import React from 'react'; export interface SwitchProps { label?: string; id?: string; isSmall?: boolean; isDark?: boolean; isDisabled?: boolean; isChecked?: boolean; } export declare const SwitchContainer: React.FC;