import React, { ReactNode } from 'react'; import { SwitchProps } from '@mantine/core'; type Props = { label?: string | ReactNode; withAsterisk?: boolean; } & SwitchProps; declare const Switching: ({ label, ...props }: Props) => React.JSX.Element; export { Switching };