import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, StyledComponentProps } from "../../shared"; declare const DefaultElement = "label"; export interface InnerLabelProps extends InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * Whether or not the label show a required state. */ required?: boolean; } export declare function InnerLabel(props: InnerLabelProps): JSX.Element; export declare namespace InnerLabel { var defaultElement: string; } /** * [Documentation](https://orbit.sharegate.design/?path=/docs/field--input) */ export declare const Label: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type LabelProps = ComponentProps; export {};