import { PropsWithChildren, ReactElement } from 'react'; import { PanelPosition } from './types'; import { PanelStateOptions } from './types/PanelStateOptions'; export interface PanelsContextProviderProps { baseZIndex?: number; bounds?: string | Element; panelStateOptions?: PanelStateOptions | null; tilingStart?: PanelPosition; tilingOffset?: PanelPosition; tilingMax?: PanelPosition; } export declare const PanelsContextProvider: ({ bounds, baseZIndex, children, panelStateOptions: _panelStateOptions, tilingStart, tilingOffset, tilingMax, }: PropsWithChildren) => ReactElement;