import * as React from 'react'; import { CapUIIcon } from '../icon'; import { FlexProps } from '../layout'; export type EntityPlaceholderProps = FlexProps & { color?: string; icon?: CapUIIcon; scale?: string; }; export declare const EntityPlaceholder: React.FC;