import { IParsedFile, ISourceFile } from '../types'; import { DatabaseSchema } from './types'; export * from './types'; declare function parseSchemaString(source: string): DatabaseSchema; declare function parseSchemaFromSource(source: string): IParsedFile; declare function parseSchemaFile(file: ISourceFile): IParsedFile; export declare const Parser: { parseSchemaFromSource: typeof parseSchemaFromSource; parseSchemaString: typeof parseSchemaString; parseSchemaFile: typeof parseSchemaFile; };