import { SvelteComponentTyped } from "svelte"; import type { SizeType } from '../../types/types'; declare const __propDef: { props: { title?: string | undefined; btnClass?: string | undefined; btnSpinnerClass?: string | undefined; btnSpinnerSize?: SizeType | undefined; submit?: boolean | undefined; disabled?: boolean | undefined; showSpinner?: boolean | undefined; iconPath?: string | undefined; iconSize?: string | undefined; showOnlyMobile?: boolean | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type ButtonSaveIconProps = typeof __propDef.props; export type ButtonSaveIconEvents = typeof __propDef.events; export type ButtonSaveIconSlots = typeof __propDef.slots; export default class ButtonSaveIcon extends SvelteComponentTyped { } export {};