import React from 'react'; import type { FallbackRectWidthProps } from '@coinbase/cds-common/types/FallbackBaseProps'; import type { SharedAccessibilityProps } from '@coinbase/cds-common/types/SharedAccessibilityProps'; import type { CellSpacing } from './Cell'; import type { CellAccessoryType } from './CellAccessory'; import type { CellMediaType } from './CellMedia'; type ContentCellFallbackSpacingProps = { innerSpacing?: CellSpacing; outerSpacing?: CellSpacing; spacingVariant?: 'normal' | 'compact' | 'condensed'; }; 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; }; /** * @deprecated Please use the new ListCellFallback component instead. This will be removed in a future major release. * @deprecationExpectedRemoval v10 */ export declare const ContentCellFallback: React.NamedExoticComponent; export {}; //# sourceMappingURL=ContentCellFallback.d.ts.map