@cainiaofe/cn-ui-m
Version:
11 lines (10 loc) • 369 B
TypeScript
import { ForwardRefExoticComponent } from 'react';
import type { CnSkeletonProps } from './types';
import Paragraph from './paragraph';
import Title from './title';
interface SkeletonComponent extends ForwardRefExoticComponent<CnSkeletonProps> {
Title: typeof Title;
Paragraph: typeof Paragraph;
}
export declare const CnSkeleton: SkeletonComponent;
export {};