import { DropdownWidthConstraint } from '../../dropdown/interfaces'; /** * AWSUI-19898 * If `expandToViewport` is true, we want to constrain the dropdown width to the smallest of: * 1. The trigger width * 2. The xxs breakpoint width * * If `expandToViewport` is false, we want to constrain the dropdown width to the trigger width. */ export declare function getDropdownMinWidth({ expandToViewport, triggerWidth, dropdownWidth }: { expandToViewport?: boolean; triggerWidth: number | null; dropdownWidth?: DropdownWidthConstraint; }): DropdownWidthConstraint | undefined;