export interface TortillaConfig { render?: { transformations: any[]; blacklist: any[]; }; } declare function registerCustomTransformations(): void; declare function getBlacklist(): any[]; export declare const Config: { registerCustomTransformations: typeof registerCustomTransformations; getBlacklist: typeof getBlacklist; render?: { transformations: any[]; blacklist: any[]; }; }; export {};