type PropertiesWithoutPageName = {
    [key: string]: unknown;
} & {
    pageName?: never;
};
export declare class FSPage {
    private pageName;
    private nonce;
    private properties;
    constructor(pageName: string, properties?: PropertiesWithoutPageName);
    private static FS_PAGE_NAME_KEY;
    private static isObject;
    private static merge;
    private static mergeObjects;
    private cleanProperties;
    update(properties: PropertiesWithoutPageName): void;
    start(properties?: PropertiesWithoutPageName): void;
    end(): void;
}
export {};
//# sourceMappingURL=FSPage.d.ts.map