@sheerid/jslib-nightly
Version:
SheerID JavaScript Library
13 lines (12 loc) • 429 B
TypeScript
import { default as React } from 'react';
interface OptInInputProps {
isErrored: boolean;
onChange: (value: boolean) => void;
value: boolean;
id?: string;
ariaLabelledby?: string;
ariaDescribedBy?: string;
disabled?: boolean;
}
export declare const OptInInputComponent: ({ isErrored, onChange, value, ariaLabelledby, ariaDescribedBy, id, disabled, }: OptInInputProps) => React.JSX.Element;
export {};