import React, { type PropsWithChildren } from 'react'; import { type LayoutInfo } from '../types'; type FoldingFeatureContextProps = { layoutInfo: LayoutInfo; isTableTop: boolean; isBook: boolean; isFlat: boolean; }; export declare const FoldingFeatureContext: React.Context; export declare const useFoldingFeature: () => FoldingFeatureContextProps | { layoutInfo: {}; isTableTop: boolean; isBook: boolean; isFlat: boolean; }; export declare const FoldingFeatureProvider: ({ children }: PropsWithChildren<{}>) => React.ReactNode; export {}; //# sourceMappingURL=FoldingFeatureContext.d.ts.map