import { ReactNode } from 'react';
import { StyleProp, ViewStyle } from 'react-native';
export declare const HomeNavigationCard: ({ title, backgroundColor, onPress, topComponent, icon, containerStyle, }: {
    title: string;
    backgroundColor: string;
    onPress?: () => void;
    topComponent: ReactNode;
    icon: ReactNode;
    containerStyle?: StyleProp<ViewStyle>;
}) => import("react/jsx-runtime").JSX.Element;
