import type { ReactNode } from 'react'; import type { Margin } from '../../reducer/Reducer.js'; import type { Inset } from './SpectraInsets.js'; export declare const insetMargin: Margin; interface BaseInsetPagContextProps extends Pick { width: number; height: number; } interface InsetPagContextProps extends BaseInsetPagContextProps { margin: Margin; } export declare function useInsetOptions(): InsetPagContextProps | null; export declare function useIsInset(): boolean; interface InsetProviderProps extends BaseInsetPagContextProps { children: ReactNode; } export declare function InsetProvider(props: InsetProviderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=InsetProvider.d.ts.map