import { SvelteComponentTyped } from "svelte"; import type { IOption } from '../../interfaces/IOption'; declare const __propDef: { props: { options: IOption[]; value?: string | number | undefined; valueMultiple?: any[] | string[] | number[] | undefined; multiple?: boolean | undefined; }; events: { click: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type SelectButtonProps = typeof __propDef.props; export declare type SelectButtonEvents = typeof __propDef.events; export declare type SelectButtonSlots = typeof __propDef.slots; export default class SelectButton extends SvelteComponentTyped { } export {};