import * as React from 'react'; import { IHasCX, IHasRawProps } from '@epam/uui-core'; import { PropsWithChildren } from 'react'; export interface ITextPlaceholderProps extends IHasRawProps>, IHasCX { /** Number of placeholder worlds to render in block */ wordsCount?: number; /** Pass true, to turn off the placeholder animation */ isNotAnimated?: boolean; } export type TextPlaceholderProps = PropsWithChildren; export declare const TextPlaceholder: React.FunctionComponent>; //# sourceMappingURL=TextPlaceholder.d.ts.map