import { CSSProperties, ReactNode } from "react"; import { SelectProps } from "./Select"; interface SelectPopoverProps { readView: ReactNode; cancelButton: ReactNode; onCancelEdit: () => void; selectProps: SelectProps; preventOutsideClick?: boolean; optionsMessage?: string; isCreatable?: boolean; className?: string; style?: CSSProperties; } export declare const SelectPopover: ({ readView, cancelButton, onCancelEdit, preventOutsideClick, optionsMessage, isCreatable, selectProps, className, style, }: SelectPopoverProps) => JSX.Element; export {};