import { VariantProps } from 'class-variance-authority'; import { ResizeHandle as ResizeHandlePrimitive, Resizable as ResizablePrimitive } from '@platejs/resizable'; import * as React from 'react'; export declare const mediaResizeHandleVariants: (props?: ({ direction?: "left" | "right" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; declare const resizeHandleVariants: (props?: ({ direction?: "bottom" | "left" | "right" | "top" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export declare function ResizeHandle({ className, options, ...props }: React.ComponentProps & VariantProps): import("react/jsx-runtime").JSX.Element | null; declare const resizableVariants: (props?: ({ align?: "center" | "left" | "right" | null | undefined; } & import('class-variance-authority/types').ClassProp) | undefined) => string; export declare function Resizable({ align, className, ...props }: React.ComponentProps & VariantProps): import("react/jsx-runtime").JSX.Element; export {};