import { default as React, LabelHTMLAttributes } from 'react'; export interface LabelProps extends LabelHTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; } declare const Label: React.ForwardRefExoticComponent>; export default Label; //# sourceMappingURL=Label.d.ts.map