import React from 'react'; import { Testable } from '../../modules/test-ids'; export declare type Props = React.HTMLAttributes & Testable & { label?: string; }; export declare const Component: { (props: Props): JSX.Element; displayName: string; };