import './FlatSelectFooter.css'; import React from 'react'; import { FieldPropView } from '../../FieldComponents'; import { PropsWithHTMLAttributesAndRef } from '../../../utils/types/PropsWithHTMLAttributes'; export type FlatSelectFooterProps = PropsWithHTMLAttributesAndRef<{ view?: FieldPropView; bordered?: boolean; form?: 'default' | 'brick' | 'round'; footer: React.ReactNode; }, HTMLDivElement>; export declare const cnFlatSelectFooter: import("@bem-react/classname").ClassNameFormatter; export declare const FlatSelectFooter: React.FC;