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