import { Controller } from './controller';
export { Controller } from './controller';
export declare class AuraSDK {
    private auraSDKInterface;
    constructor();
    /**
     * Creates an instance of the motherboard controller
     */
    createMbController(): Controller;
    /**
     * Creates an instance of the GPU controller
     */
    createGPUController(): Controller;
    /**
     * Creates an instance of the DRAM controller
     */
    createDramController(): Controller;
}
