import { IoniconsType } from "../../lib/types"; export type TabSectionItem = { onPress: () => void; icon: IoniconsType; title: string; }; export type TabSectionColor = { bg: string; text: string; }; export declare function TabSection({ itemHeight, items, colors, }: { itemHeight?: number; items: TabSectionItem[]; colors?: TabSectionColor[]; }): import("react").JSX.Element; //# sourceMappingURL=TabSection.d.ts.map