import React from 'react'; import { SplitPanelProviderProps } from '../../split-panel'; import { AppLayoutInternals } from '../interfaces'; interface AppLayoutSplitPanelDrawerSideImplementationProps { appLayoutInternals: AppLayoutInternals; splitPanelInternals: SplitPanelProviderProps; bottomDrawerReportedSize?: number; children: React.ReactNode; } export declare function AppLayoutSplitPanelDrawerSideImplementation({ children, appLayoutInternals, splitPanelInternals, bottomDrawerReportedSize }: AppLayoutSplitPanelDrawerSideImplementationProps): JSX.Element; interface AppLayoutSplitPanelDrawerBottomImplementationProps { appLayoutInternals: AppLayoutInternals; splitPanelInternals: SplitPanelProviderProps; children: React.ReactNode; } export declare function AppLayoutSplitPanelDrawerBottomImplementation({ children, splitPanelInternals, appLayoutInternals }: AppLayoutSplitPanelDrawerBottomImplementationProps): JSX.Element; export {};