import React from "react"; import { type VariantProps } from "../../utils.js"; declare const resizerVariants: (props?: ({ isResizing?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface ResizerProps extends React.HTMLAttributes, VariantProps { } declare const Resizer: ({ className, isResizing, ...props }: ResizerProps) => React.JSX.Element; export { Resizer, type ResizerProps };