import * as React from "react"; export interface ToggleContentState { isOn: boolean; } export interface ToggleContentProps { /** * Content to be rendered when isOn is true. */ contentOn: JSX.Element | string; /** * Content to be rendered when isOn is false. */ contentOff: JSX.Element | string; /** * The tabIndex is passed down and is the same as the native tabIndex. */ tabIndex?: string | number; /** * Human-readable selector used for writing tests. */ "data-cy"?: string; } declare const _default: ({ tabIndex, contentOn, contentOff, "data-cy": dataCy }: ToggleContentProps) => React.JSX.Element; export default _default;