/// export interface Props { text?: string; className?: string; children?: any; } declare const Label: ({ text, children, className }: Props) => JSX.Element; export default Label;