File size: 1,116 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
import { SvelteComponent } from "svelte";
import type { Props, Events } from "../types.js";
declare const __propDef: {
    props: Props;
    slots: {
        default: {
            builder: {
                readonly 'data-disabled': true | undefined;
                readonly disabled: true | undefined;
                readonly 'data-state': "checked" | "unchecked" | "indeterminate";
                readonly type: "button";
                readonly role: "checkbox";
                readonly 'aria-checked': boolean | "mixed";
                readonly 'aria-required': boolean;
            } & {
                "data-melt-checkbox": "";
            } & {
                action: (node: HTMLElement) => import("@melt-ui/svelte/internal/types").MeltActionReturn<"keydown" | "click">;
            };
        };
    };
    events: Events;
};
export type CheckboxProps = typeof __propDef.props;
export type CheckboxEvents = typeof __propDef.events;
export type CheckboxSlots = typeof __propDef.slots;
export default class Checkbox extends SvelteComponent<CheckboxProps, CheckboxEvents, CheckboxSlots> {
}
export {};