import { default as React } from 'react'; export declare const TITLE_OUTLET_ID = "title-outlet"; export type TitleFixedOn = 'top' | 'top-left' | 'right' | 'bottom' | 'bottom-left' | 'bottom-right' | 'left'; export declare function titleGetCssStyle(fixed: boolean, delay: number, [x, y]: number[]): React.CSSProperties; export declare function titleGetCoords(element: HTMLElement, fixedOn: TitleFixedOn): [number, number]; export type TitleChildren = ((ref: React.RefObject) => React.ReactNode) | React.ReactElement | React.RefCallback; }>>; export interface TitleProps { children: TitleChildren; title?: React.ReactNode; delay?: number; animated?: boolean; suppressMouseActivation?: boolean; fixedOn?: TitleFixedOn; active?: boolean; className?: string; rootClassName?: string; } export declare function Title(props: TitleProps): import("react/jsx-runtime").JSX.Element;