import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getPagesProject(args: GetPagesProjectArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPagesProject. */ export interface GetPagesProjectArgs { accountId: string; projectName: string; } /** * A collection of values returned by getPagesProject. */ export interface GetPagesProjectResult { readonly accountId: string; readonly buildConfig: outputs.GetPagesProjectBuildConfig; readonly canonicalDeployment: outputs.GetPagesProjectCanonicalDeployment; readonly createdOn: string; readonly deploymentConfigs: outputs.GetPagesProjectDeploymentConfigs; readonly domains: string[]; readonly framework: string; readonly frameworkVersion: string; readonly id: string; readonly latestDeployment: outputs.GetPagesProjectLatestDeployment; readonly name: string; readonly previewScriptName: string; readonly productionBranch: string; readonly productionScriptName: string; readonly projectName: string; readonly source: outputs.GetPagesProjectSource; readonly subdomain: string; readonly usesFunctions: boolean; } export declare function getPagesProjectOutput(args: GetPagesProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPagesProject. */ export interface GetPagesProjectOutputArgs { accountId: pulumi.Input; projectName: pulumi.Input; } //# sourceMappingURL=getPagesProject.d.ts.map