import * as React from 'react'; import { Position } from '../../dtos'; export interface CreateNewItemButtonProps { className?: string; listId: string; isDisabled: boolean; NewItemButton: React.ElementType; position?: Position; refListStart: React.MutableRefObject; refListEnd: React.MutableRefObject; setNewItemPosition: React.Dispatch>; showNewItem: boolean; toggleShowNewItem: (listId: any) => void; } export declare const CreateNewItemButton: React.FC;