import { FC, ReactNode } from 'react'; import { CSSObject } from '@emotion/react'; export interface InputLabelProps { children: ReactNode | string; htmlFor?: string; markInvalid?: boolean; isRequired?: boolean; labelCSS?: CSSObject; } declare const InputLabel: FC; export { InputLabel }; //# sourceMappingURL=InputLabel.d.ts.map