import StabilityAI from '..';
export interface Engine {
    description: string;
    id: string;
    name: string;
    type: 'AUDIO' | 'CLASSIFICATION' | 'PICTURE' | 'STORAGE' | 'TEXT' | 'VIDEO';
}
export type ListResponse = Engine[];
/**
 * Stability List Engines (v1/engines)
 */
export declare function list(this: StabilityAI): Promise<ListResponse>;
