File size: 1,039 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// <reference types="svelte" />
import type { CreateSeparatorProps } from './types.js';
export declare const createSeparator: (props?: CreateSeparatorProps) => {
    elements: {
        root: import("../../internal/helpers/index.js").MeltElement<[import("../../internal/helpers/index.js").WithGet<import("svelte/store").Writable<import("../../internal/types.js").Orientation>>, import("../../internal/helpers/index.js").WithGet<import("svelte/store").Writable<boolean>>], import("svelte/action").Action<any, any, Record<never, any>>, ([$orientation, $decorative]: [import("../../internal/types.js").Orientation, boolean]) => {
            role: string;
            'aria-orientation': "vertical" | undefined;
            'aria-hidden': boolean;
            'data-orientation': import("../../internal/types.js").Orientation;
        }, "separator">;
    };
    options: import("../../internal/helpers/index.js").ToWritableStores<{
        orientation: import("../../internal/types.js").Orientation;
        decorative: boolean;
    }>;
};