export interface ElmPorts {
    toJs: {
        subscribe: (callback: (fromElm: any) => void) => void;
    };
    fromJs: {
        send: (toElm: any) => void;
    };
}
export declare function programStart(appConfig: {
    ports: ElmPorts;
    domElement: Element;
}): void;
