import { SvelteComponentTyped } from "svelte";
export interface CheckboxProps {
    label: string;
    name: string;
    id?: string;
    checked: boolean;
    handleChange: (e: any) => void;
}
declare const __propDef: {
    props: {
        id?: CheckboxProps["id"];
        label: CheckboxProps["label"];
        name: CheckboxProps["name"];
        checked: CheckboxProps["checked"];
        handleChange: CheckboxProps["handleChange"];
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type IndexProps = typeof __propDef.props;
export type IndexEvents = typeof __propDef.events;
export type IndexSlots = typeof __propDef.slots;
export default class Index extends SvelteComponentTyped<IndexProps, IndexEvents, IndexSlots> {
}
export {};
