export interface PostmanLocalFlowPayload { /** * Absolute path to the local flow file. The generated URL encodes this value * as Postman's documentation requires. * * @example '/Users/username/GitHub/postman/flows/New flow.flow' */ filePath: string; } export declare function postmanLocalFlowUrl(payload: PostmanLocalFlowPayload): string;