import { HelperSection } from './HelperSection';
/** Helper */
export interface Helper {
    /** Helper description */
    description: string;
    /** Input engine UUID */
    engineId: string;
    /** Helper UUID */
    helperId: string;
    /** Helper sections */
    sections: HelperSection[];
    /** Helper title */
    title: string;
}
//# sourceMappingURL=Helper.d.ts.map