import React from 'react';
interface SwitcherProps {
    options: [string, string];
    defaultOption?: 0 | 1;
    onChange?: (selectedIndex: 0 | 1) => void;
    className?: string;
}
export declare const SwitcherSelect: React.FC<SwitcherProps>;
export {};
