import { SourceFile, VariableStatement } from 'ts-morph'; export declare function addConstExport(source: SourceFile, key: string, value: any, useStringify?: boolean, apply?: boolean): void; export declare function getExportVariableStatements(source: SourceFile, varIdentifier: string): VariableStatement; export declare function getExportVariableStatements(source: SourceFile): VariableStatement[]; export declare function getExportVariableIdentifiers(source: SourceFile): string[]; export declare function removeConstExport(source: SourceFile, identifier?: string, apply?: boolean): void; export declare function updateConstExportIdentifier(source: SourceFile, currentKey: string, updatedKey: string, apply?: boolean): void; export declare function addConstExportTypeRef(source: SourceFile, exportVar: string, typeRef?: string, infer?: boolean, apply?: boolean): void; export declare function addConstExportTypeAssertion(source: SourceFile, exportVar: string, typeRef?: string, apply?: boolean): void; //# sourceMappingURL=export.d.ts.map