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