import { CSSProperties } from 'react'; interface Proptype { htmlFor?: string; style?: CSSProperties; children?: string; className?: string; } declare const Label: ({ htmlFor, style, children, className }: Proptype) => import("react/jsx-runtime").JSX.Element; export default Label;