import * as pulumi from "@pulumi/pulumi"; /** * Resource schema for AWS::Athena::NamedQuery */ export declare function getNamedQuery(args: GetNamedQueryArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetNamedQueryArgs { /** * The unique ID of the query. */ namedQueryId: string; } export interface GetNamedQueryResult { /** * The unique ID of the query. */ readonly namedQueryId?: string; } /** * Resource schema for AWS::Athena::NamedQuery */ export declare function getNamedQueryOutput(args: GetNamedQueryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetNamedQueryOutputArgs { /** * The unique ID of the query. */ namedQueryId: pulumi.Input; }