import React from 'react'; import { type PopperContentProps } from '../../../Popper'; import { type Align, type Side } from '../../../Popper/@hook'; export type DropdownMenuContentProps = React.PropsWithChildren<{ asChild?: boolean; align?: Align; side?: Side; popperProps?: Omit; }>; export declare const DropdownMenuContent: React.ForwardRefExoticComponent<{ asChild?: boolean | undefined; align?: "center" | "end" | "start" | undefined; side?: "bottom" | "left" | "right" | "top" | undefined; popperProps?: Omit | undefined; } & { children?: React.ReactNode; } & React.RefAttributes>; //# sourceMappingURL=Content.d.ts.map