export declare namespace NestiaSimulator { interface IProps { host: string; path: string; method: "GET" | "POST" | "PATCH" | "PUT" | "DELETE"; contentType: string; } const assert: (props: IProps) => { param: (name: string) => (task: () => T) => void; query: (task: () => T_1) => void; body: (task: () => T_2) => void; }; }