import type { Options } from '../../floor'
interface UseFloor {
floorAnimate: (
list: any[],
index: number | undefined,
getFllowMarkFn: (mark: string) => any[]
) => void
}
export declare function useFloor(options?: import('../../utils').DeepPartial<Options>): UseFloor