import { AlignType } from "./types"; export declare type DropDirection = "up" | "start" | "end" | "down"; export declare type DropdownContextValue = { align?: AlignType; drop?: DropDirection; isRTL?: boolean; }; declare const DropdownContext: import("solid-js").Context; export default DropdownContext;