import React from 'react'; import type { SharedAccessibilityProps } from '@coinbase/cds-common/types/SharedAccessibilityProps'; import type { BoxBaseProps, BoxProps } from '../layout/Box'; export type CardFooterBaseProps = Pick< SharedAccessibilityProps, 'accessibilityLabel' | 'accessibilityLabelledBy' | 'accessibilityHint' > & Omit & { /** CardFooter takes one or many actions as children */ children: React.ReactNode; }; export type CardFooterProps = CardFooterBaseProps & Omit; /** * @deprecated Use ContentCardFooter instead. This will be removed in a future major release. * @deprecationExpectedRemoval v10 */ export declare const CardFooter: React.NamedExoticComponent; //# sourceMappingURL=CardFooter.d.ts.map