// eslint-disable-next-line @typescript-eslint/no-explicit-any
export type Option<V = any> = {
    label: string;
    value: V;
};
