import { BaseAPI } from '../base';
import type { BaseAPIContext } from '../type';
import type { ProjectArtifactLabelCreateContext, ProjectArtifactLabelDeleteContext } from './type';
export declare class ProjectRepositoryArtifactLabelAPI extends BaseAPI {
    constructor(context: BaseAPIContext);
    create(options: ProjectArtifactLabelCreateContext): Promise<void>;
    delete(options: ProjectArtifactLabelDeleteContext): Promise<void>;
}
