import { FC } from 'react'; interface FloatingFormProps { onClose: () => void; onReduce?: () => void; onIncrease?: () => void; onConfirm?: () => void; value?: number; onChange: (value: number) => void; max?: number; min?: number; } export declare const FloatingForm: FC; export {};