import * as React from "react";
import { type VariantProps } from "class-variance-authority";
declare const figmaDropdownSvgVariants: (props?: ({
    size?: "default" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
export interface FigmaDropdownSvgProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof figmaDropdownSvgVariants> {
    children?: React.ReactNode;
    disabled?: boolean;
    onClick?: () => void;
}
declare const FigmaDropdownSvg: React.ForwardRefExoticComponent<FigmaDropdownSvgProps & React.RefAttributes<HTMLDivElement>>;
export { FigmaDropdownSvg, figmaDropdownSvgVariants };
