export declare function FieldLabel({ title, xs, tag, md, lg, paddingBottom }: {
    title: string;
    tag?: string;
    xs?: number;
    md?: number;
    lg?: number;
    paddingBottom?: number;
}): JSX.Element;
