import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { attribute: string; on?: (string | number | boolean) | (string | number | boolean)[] | undefined; off?: (string | number | boolean) | (string | number | boolean)[] | undefined; classes?: Partial<{ /** * Class names to apply to the root element */ root: string; /** * Class names to apply to the label element */ label: string; /** * Class names to apply to the checkbox element */ checkbox: string; /** * Class names to apply to the label text */ labelText: string; }> | undefined; label?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type ToggleRefinementProps = typeof __propDef.props; export type ToggleRefinementEvents = typeof __propDef.events; export type ToggleRefinementSlots = typeof __propDef.slots; export default class ToggleRefinement extends SvelteComponentTyped { } export {};