import React, { CSSProperties, ReactNode } from 'react';
export type Props = {
    size: 'label1' | 'label2';
    children: ReactNode;
    className?: string;
    style?: CSSProperties;
    htmlFor: string;
};
/**
 * @deprecated will removed soon
 */
declare const Label: ({ children, className, style, htmlFor, size }: Props) => React.JSX.Element;
export { Label };
