import { HTMLProps } from 'react';
interface PlaceholderProps extends Omit, 'size'> {
className?: string;
color?: string;
minWidth?: number;
size?: 'xs' | 'sm' | 'lg';
type?: 'glow' | 'wave';
width?: number;
words?: number;
}
declare const Placeholder: {
({ className, color, width, minWidth, words, size, type, ...props }: PlaceholderProps): JSX.Element;
displayName: string;
};
export default Placeholder;