import { LabelAriaProps } from 'react-aria'; import React from 'react'; interface LabelProps extends LabelAriaProps, React.ComponentProps<'label'> { children?: React.ReactNode; } declare const Label: { ({ ref, children, ...props }: LabelProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { Label }; //# sourceMappingURL=Label.d.ts.map