import * as React from "react";
type ContextProps = {
    headerAffixed?: boolean;
    setHeaderAffixed?: (headerAffixed: boolean) => void;
};
export declare const LayoutContext: React.Context<ContextProps>;
export {};
