import * as pulumi from "@pulumi/pulumi"; export declare function getAiSearchToken(args: GetAiSearchTokenArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAiSearchToken. */ export interface GetAiSearchTokenArgs { accountId: string; /** * The ID of this resource. */ id: string; } /** * A collection of values returned by getAiSearchToken. */ export interface GetAiSearchTokenResult { readonly accountId: string; readonly cfApiId: string; readonly createdAt: string; readonly createdBy: string; readonly enabled: boolean; /** * The ID of this resource. */ readonly id: string; readonly legacy: boolean; readonly modifiedAt: string; readonly modifiedBy: string; readonly name: string; } export declare function getAiSearchTokenOutput(args: GetAiSearchTokenOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAiSearchToken. */ export interface GetAiSearchTokenOutputArgs { accountId: pulumi.Input; /** * The ID of this resource. */ id: pulumi.Input; }