interface OptionInterface {
    id: number | string;
    representation: string;
    disabled?: boolean;
    [key: string]: any;
}
export default OptionInterface;
