import { Base } from './base';
import { Source } from '@angular-devkit/schematics';
import { Schema as ApiGenSchema } from '../schema';
export declare class ApiConfig extends Base {
    constructor(options: ApiGenSchema);
    template(): Source;
    variables(): {
        [name: string]: any;
    };
    name(): string;
    fileName(): string;
    directory(): string;
    fullName(): string;
    importTypes(): string[];
}
