import T from 'prop-types'; declare const LoadingPlaceholder: { ({ background, text }: { background: any; text?: string | undefined; }): JSX.Element; propTypes: { background: T.Requireable; }; defaultProps: { background: string; }; }; export default LoadingPlaceholder;