import React from "react"; import { type VariantProps } from "../../utils.js"; declare const directionVariants: (props?: ({ direction?: "desc" | "asc" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface DirectionProps extends React.HTMLAttributes, VariantProps { } declare const Direction: ({ className, direction }: DirectionProps) => React.JSX.Element | null; export { Direction, type DirectionProps };