import { ReactNode } from 'react'; import { ThemeLabelPosition, ThemeBackground } from '../Theme'; export interface Props { children?: ReactNode; label: string; htmlFor?: string; isEmpty?: boolean; position?: ThemeLabelPosition; background?: ThemeBackground; subdued?: boolean; } export declare function Labelled({ children, label, htmlFor, isEmpty, position, background, subdued, }: Props): JSX.Element;