export interface FullType { full?: boolean; } export interface ColorType { nonActiveColor: string; activeColor: string; } export declare type TabsType = FullType & ColorType & { click: (tab: any) => void; data: { head: any; body: any; key: any; }[]; initialState?: any; revalidate?: boolean; }; export declare type TabType = { activeTab: any; label: any; onClick: (tab: { head: any; body: any; key: any; }) => void; nonActiveColor: string; full?: boolean; activeColor: string; unquekey: any; };