import { ReactNode } from 'react'; declare type DropdownProps = { children: ReactNode[]; side?: 'top' | 'right' | 'bottom' | 'left'; align?: 'start' | 'center' | 'end'; }; export declare function Dropdown({ side, align, children, }: DropdownProps): JSX.Element; export {};