import { ReactElement } from 'react'; import { ThemeColors } from '../../../style/theme'; type RatioString = '50-50' | '65-35' | '30-70'; export declare const TwoPanelLayout: ({ panelsRatio, leftPanel, rightPanel, noGap, ...rest }: { panelsRatio: RatioString; leftPanel: { children: ReactElement; background?: ThemeColors; }; rightPanel: { children: ReactElement; background?: ThemeColors; }; noGap?: boolean; }) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=panels.d.ts.map