import * as React from "react"; interface RenderProps { isActive?: boolean; hasFocus?: boolean; } export interface ToggleWrapperProps extends React.HTMLProps { /** * Whether the component is in the "on" state */ isActive?: boolean; /** * The value being toggled */ value: string; /** * The unique identifier for the toggle */ id?: string; /** * The type of boolean input element */ type?: "checkbox" | "radio"; /** * human-readable selector used for writing tests */ "data-cy"?: string; } interface ToggleWrapperWithRenderProps extends Omit { children: (renderProps: RenderProps) => React.ReactNode; } declare const _default: ({ id, children, "data-cy": dataCy, isActive, onFocus, onBlur, type, value, ...other }: ToggleWrapperWithRenderProps) => React.JSX.Element; export default _default;