import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { includedAttributes?: string[] | undefined; excludedAttributes?: string[] | undefined; transformItems?: import("instantsearch.js").TransformItems | undefined; classes?: Partial<{ /** * Class names to apply to the root element */ root: string; /** * Class names to apply to the button */ button: string; /** * Class names to apply to the button when it's disabled */ disabledButton: string; }> | undefined; translations?: Partial<{ /** * Label of the button */ resetButtonText: string; }> | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type ClearRefinementsProps = typeof __propDef.props; export type ClearRefinementsEvents = typeof __propDef.events; export type ClearRefinementsSlots = typeof __propDef.slots; export default class ClearRefinements extends SvelteComponentTyped { } export {};