import type { BuildInput } from 'rapiq';
import type { RobotRole } from '@authup/core-kit';
import { BaseAPI } from '../../base';
import type { EntityAPISlim, EntityCollectionResponse, EntityRecordResponse } from '../../types-base';
export declare class RobotRoleAPI extends BaseAPI implements EntityAPISlim<RobotRole> {
    getMany(data?: BuildInput<RobotRole>): Promise<EntityCollectionResponse<RobotRole>>;
    getOne(id: RobotRole['id']): Promise<EntityRecordResponse<RobotRole>>;
    delete(id: RobotRole['id']): Promise<EntityRecordResponse<RobotRole>>;
    create(data: Partial<RobotRole>): Promise<EntityRecordResponse<RobotRole>>;
}
//# sourceMappingURL=module.d.ts.map