/**
 * @description
 * Option type to use on inputs and selects
 * @property {string} label - Option label
 * @property {string} value - Option value
 */
export type OptionType = {
    label: string;
    value: string;
};
