import React from 'react';
import { PortalQsmType } from '@qite/tide-client';
import { FlyInType, SearchSeed, SortByType } from '../../../search-results/types';
type FlyInProps = {
  srpType: PortalQsmType;
  isOpen: boolean;
  setIsOpen: (open: boolean) => void;
  className?: string;
  onPanelRef?: (el: HTMLDivElement | null) => void;
  detailsLoading: boolean;
  handleConfirm?: () => void;
  flyInType?: FlyInType | null;
  isPackageEditFlow?: boolean;
  sortByTypes?: SortByType[];
  activeSearchSeed?: SearchSeed | null;
  toggleFilters?: () => void;
  filtersOpen: boolean;
};
declare const FlyIn: React.FC<FlyInProps>;
export default FlyIn;
