export type TeamsJsonObject = Record; export declare function teamsUrl(path: string, params?: Record): string; export declare function teamsPathSegment(value: string): string; export declare function teamsQuery(params: Record): string; export declare function rawParam(value: string | undefined): { value: string; raw: true; } | undefined; export declare function teamsUserListParam(values: string[]): { value: string; raw: true; } | undefined; export declare function teamsIdentifierParam(value: string | undefined): { value: string; raw: true; } | undefined; export declare function jsonParam(value: TeamsJsonObject | undefined): string | undefined; export declare function chatContextParam(): { value: string; raw: true; } | undefined; export declare function doubleEncodeJson(value: TeamsJsonObject): string;