File size: 1,398 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { SvelteComponent } from "svelte";
import type { InputProps, InputEvents } from "../types.js";
declare const __propDef: {
    props: InputProps;
    slots: {
        default: {
            builder: {
                readonly role: "combobox";
                readonly value: string;
                readonly autocomplete: "off";
                readonly disabled: true | undefined;
                readonly type: "button" | undefined;
                readonly 'aria-expanded': boolean;
                readonly 'aria-controls': string;
                readonly 'aria-activedescendant': string | undefined;
                readonly 'aria-autocomplete': "list";
                readonly 'aria-labelledby': string;
                readonly id: string;
            } & {
                [x: `data-melt-${string}`]: "";
            } & {
                action: (node: HTMLElement) => import("@melt-ui/svelte/internal/types").MeltActionReturn<"input" | "keydown" | "click">;
            };
            placeholder: string | null | undefined;
        };
    };
    events: InputEvents;
};
export type ComboboxInputProps = typeof __propDef.props;
export type ComboboxInputEvents = typeof __propDef.events;
export type ComboboxInputSlots = typeof __propDef.slots;
export default class ComboboxInput extends SvelteComponent<ComboboxInputProps, ComboboxInputEvents, ComboboxInputSlots> {
}
export {};