import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export declare class Schema { RegistryName?: Value; SchemaArn?: Value; SchemaName?: Value; constructor(properties: Schema); } export interface SchemaVersionProperties { SchemaDefinition: Value; Schema: Schema; } export default class SchemaVersion extends ResourceBase { static Schema: typeof Schema; constructor(properties: SchemaVersionProperties); }