import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface SwitchProperties {
    checked: boolean;
    theme?: Theme;
    level?: number;
    round?: boolean;
    exclusive?: boolean;
    accent?: string;
    Icon?: React.FC<any>;
    atChange: () => void;
}
declare const Switch: React.FC<SwitchProperties>;
export default Switch;
