import type { ReactNode } from 'react'; import type { TextLabelProps } from '@toptal/picasso-shared'; export declare type Props = { name?: string; label?: ReactNode; /** Label's end adornment */ labelEndAdornment?: ReactNode; required?: boolean; } & TextLabelProps; declare type InternalProps = { /** Whether label should be aligned to top of the container or not */ alignment?: 'top' | 'middle'; }; declare const FieldLabel: { ({ label, required, titleCase, name, alignment, labelEndAdornment, }: Props & InternalProps): JSX.Element | null; displayName: string; }; export default FieldLabel; //# sourceMappingURL=FieldLabel.d.ts.map