import * as pulumi from "@pulumi/pulumi"; export declare function getQStashTopic(args: GetQStashTopicArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getQStashTopic. */ export interface GetQStashTopicArgs { topicId: string; } /** * A collection of values returned by getQStashTopic. */ export interface GetQStashTopicResult { readonly endpoints: { [key: string]: string; }[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly name: string; readonly topicId: string; } export declare function getQStashTopicOutput(args: GetQStashTopicOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getQStashTopic. */ export interface GetQStashTopicOutputArgs { topicId: pulumi.Input; }