import React from 'react'; export type SwitchContainerProps = React.LabelHTMLAttributes & { /** * This property changes position of switch and its label. * Default: `end` */ readonly labelPosition?: 'start' | 'end' | 'top' | 'bottom'; /** * if `true` switch state can not be changed * Default: false; */ readonly disabled?: boolean; }; declare const _default: React.ForwardRefExoticComponent & { /** * This property changes position of switch and its label. * Default: `end` */ readonly labelPosition?: "bottom" | "top" | "start" | "end" | undefined; /** * if `true` switch state can not be changed * Default: false; */ readonly disabled?: boolean | undefined; } & React.RefAttributes>; export default _default;