import { HTMLProps, PolymorphicProps } from '../factory';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export interface DateInputLabelBaseProps extends PolymorphicProps {
}
export interface DateInputLabelProps extends HTMLProps<'label'>, DateInputLabelBaseProps {
}
export declare const DateInputLabel: ForwardRefExoticComponent>;