export declare type IOption = {
    groupCode: string;
    optionCode: "OP1" | "OP1" | "OP1";
    groupDescription: string;
    normCode: string;
};
declare function getAll(): Promise<IOption[]>;
declare function upload(files: File[]): Promise<any>;
declare const optionService: {
    getAll: typeof getAll;
    upload: typeof upload;
};
export default optionService;
