import React from 'react'; import type { View } from 'react-native'; import type { SharedProps } from '@coinbase/cds-common/types/SharedProps'; import type { HStackProps } from '../../layout/HStack'; export type ContentCardFooterBaseProps = SharedProps & { children?: React.ReactNode; }; export type ContentCardFooterProps = ContentCardFooterBaseProps & HStackProps; export declare const ContentCardFooter: React.MemoExoticComponent< ({ ref, children, justifyContent, ...props }: ContentCardFooterProps & { ref?: React.Ref; }) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=ContentCardFooter.d.ts.map