import { ReactNode } from 'react';
export interface AutoCompleteOptions {
    label: string;
    value: string | number;
    icon?: ReactNode;
}
