import React from 'react'; import type { PaddingProps } from '@coinbase/cds-common/types/SpacingProps'; export type CellAccessoryType = 'arrow' | 'more' | 'selected' | 'unselected'; export type CellAccessoryProps = PaddingProps & { /** Type of accessory to display at the end. */ type: CellAccessoryType; /** * @danger This is a migration escape hatch. It is not intended to be used normally. */ className?: string; }; export declare const CellAccessory: React.NamedExoticComponent; //# sourceMappingURL=CellAccessory.d.ts.map