import type React from "react"; import type { Button } from "../Button"; import type { ComboboxPrimitivePositionerProps } from "../primitives/ComboboxPrimitive"; export type ComboboxFooterActionButtonRecipe = Pick, "size" | "type" | "variation">; type ComboboxPositionerResponsiveProps = Pick; export interface ComboboxResponsiveConfig { readonly defaultModal: boolean; readonly footerActionButtonRecipe: ComboboxFooterActionButtonRecipe; readonly positionerProps: ComboboxPositionerResponsiveProps; readonly showChipRemove: boolean; } export declare const DEFAULT_COMBOBOX_RESPONSIVE_CONFIG: { defaultModal: false; footerActionButtonRecipe: { size: "small"; type: "secondary"; variation: "work"; }; positionerProps: {}; showChipRemove: true; }; export declare function getComboboxResponsiveConfig(isSmallScreen: boolean): { defaultModal: false; footerActionButtonRecipe: { size: "small"; type: "secondary"; variation: "work"; }; positionerProps: {}; showChipRemove: true; } | { defaultModal: true; footerActionButtonRecipe: { size: "base"; type: "secondary"; variation: "work"; }; positionerProps: { align: "center"; positionMethod: "fixed"; side: "bottom"; sideOffset: number; style: { position: "fixed"; width: string; maxWidth: string; margin: number; transform: "none"; inset: string; }; }; showChipRemove: false; }; export {};