import { ChartType, Query } from '@cubejs-client/core'; import { Tabs } from 'antd'; import { ReactNode } from 'react'; export declare const StyledTabs: import("styled-components/dist/types").IStyledComponentBase<"web", Omit & { style?: import("react").CSSProperties | import("styled-components/dist/types").CSSPropertiesWithVars | undefined; }> & string & Omit>; type QueryTab = { id: string; query: Query; chartType?: ChartType; name?: string; }; export type QueryTabsProps = { query: Query | null; children: (tab: QueryTab, saveTab: (tab: Omit) => void) => ReactNode; sidebar?: ReactNode | null; onTabChange?: (tab: QueryTab) => void; }; export declare function QueryTabs({ query, children, sidebar, onTabChange, }: QueryTabsProps): import("react/jsx-runtime").JSX.Element | null; export {};