import { SVGAttributes } from 'react'; import ContentLoader from './ContentLoader'; export interface IContentLoaderProps extends SVGAttributes { animate?: boolean; backgroundColor?: string; backgroundOpacity?: number; baseUrl?: string; foregroundColor?: string; foregroundOpacity?: number; gradientRatio?: number; rtl?: boolean; speed?: number; title?: string; uniqueKey?: string; beforeMask?: JSX.Element; } export { default as Facebook } from './presets/FacebookStyle'; export { default as Instagram } from './presets/InstagramStyle'; export { default as Code } from './presets/CodeStyle'; export { default as List } from './presets/ListStyle'; export { default as BulletList } from './presets/BulletListStyle'; export default ContentLoader; //# sourceMappingURL=index.d.ts.map