/** Engine Template */
export interface CapabilitiesNotebookTemplate {
    /** Number of driver cores of the template */
    driverCores: number;
    /** Driver memory in bytes of the template */
    driverMemory: number;
    /** Driver memory overhead in bytes of the template */
    driverMemoryOverhead: number;
    /** Number of executor cores of the template */
    executorCores: number;
    /** Executor memory in bytes of the template */
    executorMemory: number;
    /** Executor memory overhead in bytes of the template */
    executorMemoryOverhead: number;
    /** Number of executors of the template */
    executorNumber: number;
    /** ID of the template */
    id: number;
    /** Name of the template */
    name: string;
}
//# sourceMappingURL=CapabilitiesNotebookTemplate.d.ts.map