import { Config } from './config';
import { Schema } from './type';
export { default as SchemaId } from './schemaId';
export * from './type';
export interface Options {
    contents: Schema[];
    config?: Partial<Config>;
}
export default function dtsGenerator(options: Options): Promise<string>;
