File size: 1,089 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 } from "../types.js";
declare const __propDef: {
props: InputProps;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
builder: {
name: string | undefined;
value: string;
'aria-hidden': "true";
hidden: boolean;
disabled: boolean;
required: boolean;
tabIndex: number;
style: string;
} & {
[x: `data-melt-${string}`]: "";
} & {
action: (node: HTMLInputElement) => {
destroy: import("svelte/store").Unsubscriber;
};
};
};
};
};
export type SelectInputProps = typeof __propDef.props;
export type SelectInputEvents = typeof __propDef.events;
export type SelectInputSlots = typeof __propDef.slots;
export default class SelectInput extends SvelteComponent<SelectInputProps, SelectInputEvents, SelectInputSlots> {
}
export {};
|