export type SelectOption<T = string> = {
    value: T;
    label: string;
    __isNew__?: boolean;
};
export type ImageListOption = {
    title: string;
    value: string;
};
