export declare const getTextColor: (status: 'Debit' | 'Credit') => string;
export declare const getBackgroundColor: (status: 'Debit' | 'Credit') => string;
declare const TransactionCard: ({ status, title, transactionType, showTransactionType, amount, onPress, createdDate, bottomSpacing, }: {
    status: 'Debit' | 'Credit';
    title: string;
    amount: number;
    transactionType: string;
    showTransactionType: boolean;
    onPress: () => void;
    createdDate: string;
    bottomSpacing?: number;
}) => import("react/jsx-runtime").JSX.Element;
export default TransactionCard;
