import type { SwitchProps } from './Switch'; export type OldSwitchProps = Omit & { /** @deprecated checked를 대신 사용해주세요. */ isOn?: boolean; }; export declare function convertOldSwitchProps(props: OldSwitchProps): SwitchProps;