import React from 'react';
import { StyledLabel } from './StyledUI';
declare type LabelProps = React.ComponentProps<typeof StyledLabel>;
export declare function Label({ align, ...props }: LabelProps & {
    align?: 'top';
}): React.JSX.Element;
export {};
