export type CustomAnnotationDropdownType = 'multi' | 'single';
export declare class CustomAnnotationDropdownItem {
    id: string;
    label: string;
}
export declare class CustomAnnotationDropdownData {
    type: CustomAnnotationDropdownType;
    placeholder?: string;
    data: CustomAnnotationDropdownItem[];
}
