import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; value: string; selected?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type OptionProps = typeof __propDef.props; export declare type OptionEvents = typeof __propDef.events; export declare type OptionSlots = typeof __propDef.slots; export default class Option extends SvelteComponentTyped { } export {};