/** * Boilerplate, which will be replaced with real content after load * * @author: Ilya Krenev * @date: 2022-05-25 */ import * as React from 'react'; declare type RowProps = { width?: string; height?: string; margin?: string; }; interface IProps { isLoading: boolean; isActive?: boolean; isRound?: boolean; isDark?: boolean; rows?: number; paragraph?: RowProps | boolean; title?: RowProps | boolean; } declare type DefaultProps = { isActive: boolean; isDark: boolean; paragraph: boolean; title: boolean; rows: number; }; export declare class Skeleton extends React.Component { static defaultProps: DefaultProps; renderSkeleton: () => JSX.Element; render(): {}; } export {};