export type DeclarationTypes = 'function' | 'const' | 'let' | 'var' | 'class' | 'enum';
export declare const defaultDeclarationKeywords: DeclarationTypes[];
export declare const getExportedFunctionNamesByFileContent: (fileContent: string, declarationsToExport?: DeclarationTypes[], debug?: boolean) => string[];
