import { BoxProps, HoistProps } from '@xh/hoist/core'; import './Placeholder.scss'; export interface PlaceholderProps extends HoistProps, BoxProps { } /** * A thin wrapper around `Box` with standardized, muted styling. * * Intended as an alternative to masking or other approaches when a portion of an application's * layout is not yet ready to be rendered - e.g. a detail panel without a current record selection. */ export declare const Placeholder: import("react").FC, placeholder: import("@xh/hoist/core").ElementFactory;