export declare type RequestModel = { id: number; projectCode: string; createdDate: string; versionCode: string; content: string; isClosed: boolean; closedReason: number; }; export declare type CreateRequestModel = { versionCode: string; content: string; }; declare function getAll(projectCode: string): Promise; declare function create(projectCode: string, model: CreateRequestModel): Promise; declare function approve(projectCode: string): Promise; declare const optionService: { getAll: typeof getAll; create: typeof create; approve: typeof approve; }; export default optionService;