import { PromptAttribute, PromptAttributes } from '.';
import { IEntityIdentifier } from './base';
export interface Extension extends IEntityIdentifier<string> {
    description?: string;
    version?: string;
    disabled?: boolean;
    configuration?: PromptAttribute[] | PromptAttributes;
    url?: string;
}
