import { SvelteComponent } from "svelte"; declare const __propDef: { props: { class?: string | undefined; label?: string | undefined; href?: string | undefined; description?: string | undefined; icon?: string | undefined; active?: boolean | undefined; clickable?: boolean | undefined; contrast?: boolean | undefined; size?: "base" | "lg" | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { icon: { size: "base" | "lg"; className: string; }; label: {}; after: {}; }; }; export type SelectVariableProps = typeof __propDef.props; export type SelectVariableEvents = typeof __propDef.events; export type SelectVariableSlots = typeof __propDef.slots; export default class SelectVariable extends SvelteComponent { } export {};