import * as pulumi from "@pulumi/pulumi";
/**
 * Resource schema for AWS::Personalize::Schema.
 */
export declare function getSchema(args: GetSchemaArgs, opts?: pulumi.InvokeOptions): Promise<GetSchemaResult>;
export interface GetSchemaArgs {
    /**
     * Arn for the schema.
     */
    schemaArn: string;
}
export interface GetSchemaResult {
    /**
     * Arn for the schema.
     */
    readonly schemaArn?: string;
}
/**
 * Resource schema for AWS::Personalize::Schema.
 */
export declare function getSchemaOutput(args: GetSchemaOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSchemaResult>;
export interface GetSchemaOutputArgs {
    /**
     * Arn for the schema.
     */
    schemaArn: pulumi.Input<string>;
}
