import { Ionicons } from '@expo/vector-icons';
type TabConfig = {
    name: string;
    icon: keyof typeof Ionicons.glyphMap;
    title?: string;
};
export declare const CustomTabs: ({ routes }: {
    routes: TabConfig[];
}) => any;
export {};
