import { JSONSchema7 } from 'json-schema';
export interface ProviderDefinition {
    /** Unique identifier of the provider */
    id: string;
    /** A user friendly name of the provider */
    displayName: string;
    /** JSON Schema defining the configuration object for the provider */
    schema: JSONSchema7;
}
//# sourceMappingURL=provider-definition.model.d.ts.map