type Props = { title?: string; selectedVariantIds?: string[]; initialIds?: string[]; limit?: number; okButtonLoading?: boolean; buttonText?: string; onClose?: () => void; onOk?: (variants: string[]) => void; }; declare const VariantsPicker: ({ title, selectedVariantIds, initialIds, limit, okButtonLoading, buttonText, onClose, onOk }: Props) => import("react/jsx-runtime").JSX.Element; export default VariantsPicker;