/**
 * Renders a component from the code base.
 * @param file the filename/path of the file to render
 * @param values the values to use while templating
 */
export declare function render(file: string, values: {
    [key: string]: any;
}): string;
export declare function getStaticFolder(): string;
export declare function getViewFolder(): string;
export declare function engine(filepath: any, data: any, callback: any): void;
