File size: 829 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 |
import { SvelteComponent } from "svelte";
import type { GroupLabelEvents, GroupLabelProps } from "../types.js";
declare const __propDef: {
props: GroupLabelProps;
slots: {
default: {
builder: {
id: string;
} & {
[x: `data-melt-${string}`]: "";
} & {
action: import("svelte/action").Action<any, any, Record<never, any>>;
};
};
};
events: GroupLabelEvents;
};
export type ComboboxGroupLabelProps = typeof __propDef.props;
export type ComboboxGroupLabelEvents = typeof __propDef.events;
export type ComboboxGroupLabelSlots = typeof __propDef.slots;
export default class ComboboxGroupLabel extends SvelteComponent<ComboboxGroupLabelProps, ComboboxGroupLabelEvents, ComboboxGroupLabelSlots> {
}
export {};
|