import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        label: string;
        checked?: boolean | undefined;
    };
    events: {
        change: Event;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type GeneralInputCheckProps = typeof __propDef.props;
export type GeneralInputCheckEvents = typeof __propDef.events;
export type GeneralInputCheckSlots = typeof __propDef.slots;
export default class GeneralInputCheck extends SvelteComponent<GeneralInputCheckProps, GeneralInputCheckEvents, GeneralInputCheckSlots> {
}
export {};
