import './SelectCreateButton.css'; import React from 'react'; import { PropsWithHTMLAttributesAndRef } from '../../../utils/types/PropsWithHTMLAttributes'; import { PropSize } from '../types'; type SelectCreateButtonProps = PropsWithHTMLAttributesAndRef<{ labelForCreate?: string; inputValue?: string; active: boolean; hovered: boolean; size: PropSize; indent: 'normal' | 'increased'; }, HTMLDivElement>; export declare const cnSelectCreateButton: import("@bem-react/classname").ClassNameFormatter; export declare const SelectCreateButton: React.FC; export {};