import { BaseRequestOptions, BaseService, PaginatedRequestOptions } from '../infrastructure'; export declare class PipelineScheduleVariables extends BaseService { all(projectId: string | number, pipelineScheduleId: number, options?: PaginatedRequestOptions): Promise; create(projectId: string | number, pipelineScheduleId: number, options?: BaseRequestOptions): Promise; edit(projectId: string | number, pipelineScheduleId: number, keyId: string, options?: BaseRequestOptions): Promise; show(projectId: string | number, pipelineScheduleId: number, keyId: string, options?: BaseRequestOptions): Promise; remove(projectId: string | number, pipelineScheduleId: number, keyId: string, options?: BaseRequestOptions): Promise; }