import { type StyledProps } from "./Styled"; /** * moaui Styled Switch (Single) * * @param props - checked, label, onChange, disabled * @example * {}} * disabled={false || true} * /> * @returns React.ReactElement */ declare function Switch(props: StyledProps): import("react/jsx-runtime").JSX.Element; declare const SampleProps: { id: string; checked: boolean; label: string; onChange: () => void; disabled: boolean; }; export default Switch; export { type StyledProps as SwitchProps, SampleProps as SwitchSample, }; //# sourceMappingURL=index.d.ts.map