import type { FallbackRectWidthProps } from '@coinbase/cds-common/types/FallbackBaseProps'; import type { SharedAccessibilityProps } from '@coinbase/cds-common/types/SharedAccessibilityProps'; import type { SharedProps } from '@coinbase/cds-common/types/SharedProps'; import type { CellMediaType } from '../cells/CellMedia'; import type { TableCellBaseProps, TableCellProps } from './TableCell'; export type TableCellFallbackBaseProps = { /** Display title shimmer. */ title?: boolean; /** Display subtitle shimmer. */ subtitle?: boolean; /** Display start shimmer with a shape according to type. */ start?: CellMediaType; /** Display end shimmer with a shape according to type. */ end?: CellMediaType; } & SharedProps & FallbackRectWidthProps & Pick & Pick; type TableCellFallbackSharedProps = React.TdHTMLAttributes & React.ThHTMLAttributes; export type TableCellFallbackProps = TableCellFallbackBaseProps & Omit & Pick; export declare const TableCellFallback: import('react').MemoExoticComponent< (_props: TableCellFallbackProps) => import('react/jsx-runtime').JSX.Element >; export {}; //# sourceMappingURL=TableCellFallback.d.ts.map