import { SkeletonTitleProps } from 'antd/es/skeleton/Title';
import { FC } from 'react';
import { SKELETON_TITLE } from '../../../Types';
export interface ISkeletonTitle {
    ctype: typeof SKELETON_TITLE;
    props: SkeletonTitleProps;
}
declare const SkeletonTitle: FC<ISkeletonTitle>;
export default SkeletonTitle;
