export type MattermostLocation = { /** * Mattermost server URL value used in the official deep link format. */ serverUrl: string; /** * Mattermost team name. */ teamName: string; }; type MattermostRawPathSegment = { value: string; raw: true; }; export declare function mattermostUrl(location: MattermostLocation, pathSegments?: Array): string; export declare function mattermostPathSegment(value: string): string; export declare function rawMattermostPathSegment(value: string): MattermostRawPathSegment; export {};