import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { title?: string | undefined; btnClass?: string | undefined; iconPath?: string | undefined; iconSize?: string | undefined; disabled?: boolean | undefined; iconSpin?: boolean | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type ButtonSyncProps = typeof __propDef.props; export type ButtonSyncEvents = typeof __propDef.events; export type ButtonSyncSlots = typeof __propDef.slots; export default class ButtonSync extends SvelteComponentTyped { } export {};