import * as pulumi from "@pulumi/pulumi"; export declare function getQStashEndpoint(args: GetQStashEndpointArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getQStashEndpoint. */ export interface GetQStashEndpointArgs { topicId: string; } /** * A collection of values returned by getQStashEndpoint. */ export interface GetQStashEndpointResult { readonly endpointId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly topicId: string; readonly url: string; } export declare function getQStashEndpointOutput(args: GetQStashEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getQStashEndpoint. */ export interface GetQStashEndpointOutputArgs { topicId: pulumi.Input; }