import { FunctionComponent } from 'react';
import { StringSlot } from './shared';
interface TitleProps {
    slot?: StringSlot;
    children?: JSX.Element | string;
}
export declare const defaultTitleSlot: StringSlot;
export declare const Title: FunctionComponent<TitleProps>;
export {};
