import { default as React } from 'react';
export interface FinSwitchProps {
    label?: string;
    checked: boolean;
    disabled?: boolean;
    onChange: (checked: boolean) => void;
    sx?: any;
}
export declare const FinSwitch: React.FC<FinSwitchProps>;
