import { HTMLAttributes, ReactNode } from 'react'; interface TitleProps extends HTMLAttributes { hasError?: boolean; hasNameConflict?: boolean; required?: boolean; hasValue?: boolean; leftSlot?: ReactNode; typeSelectorSlot?: ReactNode; rightSlot?: ReactNode; childrenWrap?: boolean; } export declare const Title: import("react").ForwardRefExoticComponent>; export declare const Dot: import("react").ForwardRefExoticComponent<{ reason: string; } & HTMLAttributes & import("react").RefAttributes>; export {};