export default OpacitySelector;
type OpacitySelector = {
    $on?(type: string, callback: (e: any) => void): () => void;
    $set?(props: Partial<$$ComponentProps>): void;
} & {
    onPointerUp: () => void;
};
declare const OpacitySelector: import("svelte").Component<{
    colorOpacity: any;
    opacity?: string;
    onopacitychange: any;
    onstop: any;
}, {
    onPointerUp: () => void;
}, "">;
type $$ComponentProps = {
    colorOpacity: any;
    opacity?: string;
    onopacitychange: any;
    onstop: any;
};
