declare module 'aroma-jsx-engine' {
    import { ComponentType } from 'react';

    export function compile(code: string): ComponentType<any>;
    export function render(component: ComponentType<any>, props?: object): string;
    export function loadFromFile(filePath: string): ComponentType<any>;
}