import React from 'react'; interface ISwitchKitProps { suffix?: React.ReactNode; id?: string; prefix?: React.ReactNode; size?: 'small' | 'medium' | 'large'; onChange?: (checked: boolean) => void; value?: boolean; variant?: 'standard' | 'short'; classes?: Partial>; className?: string; } declare const SwitchKit: React.ForwardRefExoticComponent>; export default SwitchKit; export type { ISwitchKitProps }; //# sourceMappingURL=index.d.ts.map