UNPKG

301 BTypeScriptView Raw
1import { FunctionComponent } from 'react';
2import { DocsContextProps } from './DocsContext';
3interface TitleProps {
4 children?: JSX.Element | string;
5}
6export declare const extractTitle: ({ title }: DocsContextProps) => string;
7export declare const Title: FunctionComponent<TitleProps>;
8export {};