import * as React from "react"; import { type VariantProps } from "../../../utils.js"; import type { TriggerDefaultProps } from "../../../FilePicker/primitives/components/types.js"; declare const triggerVariants: (props?: ({ type?: "area" | "compact" | null | undefined; variant?: "primary" | "secondary" | "ghost" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; interface TriggerProps extends TriggerDefaultProps, VariantProps { renderTrigger?: (props: any) => React.ReactElement; } declare const Trigger: ({ renderTrigger, type, variant, text, className, disabled, onSelectItem, ...props }: TriggerProps) => React.JSX.Element; export { Trigger, type TriggerProps, triggerVariants };