import React, { type InputHTMLAttributes } from "react";
import type { FormFieldProps } from "../FormField/FormField";
export type ToggleButtonProps = {
label: string;
subLabel?: string;
} & Omit & Omit, "type">;
export declare const ToggleButton: React.ForwardRefExoticComponent<{
label: string;
subLabel?: string;
} & Omit & Omit, "type"> & React.RefAttributes>;