import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { icon?: string | undefined; clazz?: string | undefined; id?: string | undefined; color?: string | undefined; title?: string | undefined; hasColorbar?: boolean | undefined; iconSize?: string | undefined; iconColor?: string | undefined; }; events: { color: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type ColorPickerButtonProps = typeof __propDef.props; export type ColorPickerButtonEvents = typeof __propDef.events; export type ColorPickerButtonSlots = typeof __propDef.slots; export default class ColorPickerButton extends SvelteComponentTyped { } export {};