import { FC, LabelHTMLAttributes, ReactNode } from 'react';
import { StandardProps } from '@react-foundry/component-helpers';
import '../assets/Label.scss';
export type LabelProps = StandardProps & LabelHTMLAttributes & {
children?: ReactNode;
hidden?: boolean;
};
export declare const Label: FC;
export default Label;