File size: 876 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import { SvelteComponent } from "svelte";
import type { Events, Props } from "../types.js";
declare const __propDef: {
props: Props;
slots: {
default: {
builder: (Record<string, any> | ((...args: any[]) => Record<string, any>) | ((...args: any[]) => Record<string, any>) | ((...args: any[]) => Record<string, any>) | ((...args: any[]) => Record<string, any>)) & {
"data-melt-label": "";
} & {
action: (node: HTMLElement) => import("@melt-ui/svelte/internal/types").MeltActionReturn<"mousedown">;
};
};
};
events: Events;
};
export type LabelProps = typeof __propDef.props;
export type LabelEvents = typeof __propDef.events;
export type LabelSlots = typeof __propDef.slots;
export default class Label extends SvelteComponent<LabelProps, LabelEvents, LabelSlots> {
}
export {};
|