import type { ComponentPropsWithoutRef } from 'react'; type LabelProps = ComponentPropsWithoutRef<'label'>; declare function Label({ className, ...props }: LabelProps): import("react/jsx-runtime").JSX.Element; export default Label; export type { LabelProps };