import { IsoCountry, MarkdownString } from "../builtins"; export interface RefineUserRequestQuery { query: string; context: string; localization?: IsoCountry; } export interface RefineUserRequestResponse { text: MarkdownString; options: { option: string; description: string | null; }[]; skip: string | null; } //# sourceMappingURL=refineUserRequest.d.ts.map