import * as React from 'react'; export type IInputLabel = { inputDescriptor?: string; disabled?: boolean; required?: boolean; hideAsterisk?: boolean; tooltip?: string; } & React.LabelHTMLAttributes; export declare const InputLabel: (props: IInputLabel) => React.JSX.Element; //# sourceMappingURL=InputLabel.d.ts.map