import React from 'react'; import { IBaseElement, IColor } from '../types'; export interface IPlaceholder extends Omit { color?: IColor; version?: 'rectangle' | 'rounded' | 'circle'; width?: string | number; height?: string | number; animation?: 'wave' | 'pulse' | boolean; text?: boolean; } declare const Placeholder: React.FC; export default Placeholder;