import React from "react"; import { type IconTypes } from "../../Icons"; export interface Props { id?: string; inputType?: string; classes?: string; description?: string; accessiblePlaceholder?: boolean; for?: string; attributes?: { [key: string]: string; }; text: string; inline?: boolean; iconType?: IconTypes; dataTestId?: string; } export declare function Label(props: Props): React.JSX.Element;