import React from 'react'; import type { FallbackRectWidthProps } from '@coinbase/cds-common/types'; import type { SharedAccessibilityProps } from '@coinbase/cds-common/types/SharedAccessibilityProps'; import { type CellAccessoryType } from './CellAccessory'; import type { CellMediaType } from './CellMedia'; import type { ContentCellBaseProps } from './ContentCell'; type ContentCellFallbackSpacingProps = Pick< ContentCellBaseProps, 'innerSpacing' | 'outerSpacing' | 'spacingVariant' >; export type ContentCellFallbackProps = FallbackRectWidthProps & ContentCellFallbackSpacingProps & Pick & { /** Accessory to display at the end of the cell. */ accessory?: CellAccessoryType; /** Custom accessory rendered at the end of the cell. Takes precedence over `accessory`. */ accessoryNode?: React.ReactNode; /** Display description shimmer. */ description?: boolean; /** Display media shimmer with a shape according to type. */ media?: CellMediaType; /** Display meta shimmer. */ meta?: boolean; /** Display subtitle shimmer. */ subtitle?: boolean; /** Display title shimmer. */ title?: boolean; }; export declare const ContentCellFallback: React.NamedExoticComponent; export {}; //# sourceMappingURL=ContentCellFallback.d.ts.map