1 | import * as React from 'react';
|
2 | import { CSSModule } from './utils';
|
3 |
|
4 | export interface PlaceholderProps extends React.HTMLAttributes<HTMLElement> {
|
5 | [key: string]: any;
|
6 | color?: string;
|
7 | tag?: React.ElementType;
|
8 | animation?: string;
|
9 | className?: string;
|
10 | cssModule?: CSSModule;
|
11 | size?: string;
|
12 | widths?: string[];
|
13 | innerRef?: React.Ref<HTMLElement>;
|
14 | }
|
15 |
|
16 | declare class Placeholder extends React.Component<PlaceholderProps> {}
|
17 | export default Placeholder; |
\ | No newline at end of file |