export interface AppLayoutContextProps {
    stickyOffsetBottom: number;
    stickyOffsetTop: number;
}
export declare const AppLayoutDomContext: import("../hooks/dom-context").DomContextDeclaration<AppLayoutContextProps>;
export declare function useAppLayoutContext(): {
    stickyOffsetBottom: number;
    stickyOffsetTop: number;
};
