import { VariantProps } from 'class-variance-authority'; import { ComponentProps, SVGAttributes } from 'react'; export interface IconProps extends SVGAttributes { children?: never; color?: string; } declare const trigger: (props?: ({ size?: "small" | "medium" | null | undefined; variant?: "text" | "outline" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export interface SelectTriggerProps extends ComponentProps<'button'>, VariantProps { iconProps?: IconProps; nativeButton?: boolean; } export declare function SelectTrigger({ ref, size, variant, className, children, iconProps, 'aria-label': ariaLabel, ...props }: SelectTriggerProps): import("react/jsx-runtime").JSX.Element; export declare namespace SelectTrigger { var displayName: string; } export {}; //# sourceMappingURL=select-trigger.d.ts.map