export default SolidPicker;
type SolidPicker = {
    $on?(type: string, callback: (e: any) => void): () => void;
    $set?(props: Partial<$$ComponentProps>): void;
} & {
    onPointerUp: () => void;
};
declare const SolidPicker: import("svelte").Component<{
    colorHexa?: string;
    oncolorchanged: any;
    oncolorchanging: any;
}, {
    onPointerUp: () => void;
}, "">;
type $$ComponentProps = {
    colorHexa?: string;
    oncolorchanged: any;
    oncolorchanging: any;
};
