import type { RefObject } from 'react';
export type DataListBaseOptionId = string;
export type DataListBaseOptionRef = HTMLElement;
export type DataListBaseOption = {
    id: DataListBaseOptionId;
    disabled: boolean;
};
export type DataListBaseInternalOption = DataListBaseOption & {
    ref: RefObject<DataListBaseOptionRef | null>;
};
