import './FlatSelectRoot.css'; import { AtomMut } from '@reatom/framework'; import React from 'react'; import { Direction } from '../../Popover'; import { PropsWithHTMLAttributesAndRef } from '../../../utils/types/PropsWithHTMLAttributes'; export type FlatSelectRootProps = PropsWithHTMLAttributesAndRef<{ anchorRef?: React.RefObject; openAtom: AtomMut; direction?: Direction; spareDirection?: Direction; possibleDirections?: Direction[]; viewportRef?: React.RefObject; container?: Element; }, HTMLDivElement>; export declare const cnFlatSelectRoot: import("@bem-react/classname").ClassNameFormatter; export declare const FlatSelectRoot: React.FC;