import { BaseComponent } from "../../../types/baseComponent"; import { ReactElement, ComponentProps } from "react"; interface DropdownMenuTheme { menu?: string; aninimationIn?: string; aninimationOut?: string; } export interface DropdownMenuProps extends BaseComponent { appendToBody?: boolean; responsive?: "sm-start" | "md-start" | "lg-start" | "xl-start" | "xxl-start" | "sm-end" | "md-end" | "lg-end" | "xl-end" | "xxl-end"; position?: "dropup" | "dropright" | "dropleft"; alignment?: "start" | "end"; tag?: ComponentProps; children: ReactElement[] | ReactElement; theme?: DropdownMenuTheme; popperConfig?: Record; display?: "dynamic" | "static"; offset?: [number, number] | (() => any); } export {};