/** @typedef {typeof __propDef.props} StyledButtonProps */ /** @typedef {typeof __propDef.events} StyledButtonEvents */ /** @typedef {typeof __propDef.slots} StyledButtonSlots */ export default class StyledButton extends SvelteComponentTyped<{ style?: Record | undefined; appearance?: ButtonAppearance | undefined; disabled?: boolean | undefined; }, { click: MouseEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type StyledButtonProps = typeof __propDef.props; export type StyledButtonEvents = typeof __propDef.events; export type StyledButtonSlots = typeof __propDef.slots; import { ButtonAppearance } from "../constants"; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { style?: Record | undefined; appearance?: ButtonAppearance | undefined; disabled?: boolean | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};