import * as React from 'react';
import { Gemstone } from '@gpa-gemstone/application-typings';
interface IProps<T> extends Gemstone.TSX.Interfaces.IBaseFormProps<T> {
    /**
      * CSS styles to apply to the form group
      * @type {React.CSSProperties}
      * @optional
    */
    Style?: React.CSSProperties;
}
export default function ToggleSwitch<T>(props: IProps<T>): JSX.Element;
export {};
