import React from 'react'; export type LabelTypes = { htmlFor: string; children: React.ReactNode; required?: boolean; className?: string; appendClassName?: string; requiredColor?: string; style?: React.CSSProperties; }; export declare const Label: ({ className, appendClassName, htmlFor, children, required, requiredColor, style }: LabelTypes) => JSX.Element;