import { HttpRequestStoreConfig, IStore } from "../types/store-types"; import { HttpRequestInput } from "../types/request-types"; import { Framework } from "../Framework"; import { Page } from "../Page"; import { Scope } from "../Scope"; export declare class HttpRequestStore implements IStore { #private; constructor(framework: Framework, page: Page, scope: Scope); get data(): any; get name(): string; setConfig(storeConfig: HttpRequestStoreConfig): void; setPropertyExpression(propName: string, propExpression: string): void; loadData(input: HttpRequestInput): Promise; observe(callback: (data: any) => void): void; }