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