import type { ComponentPropsWithRef } from 'react'; import { Button } from '../button/button'; export type DialogTriggerProps = ComponentPropsWithRef; /** * DialogTrigger component, used within a Dialog.TriggerContext to open a dialog. * * @example * * Open Dialog * * Content * * */ export declare const DialogTrigger: import("react").ForwardRefExoticComponent, "command" | "commandfor" | "commandFor">, "type" | "data-color" | "command" | "commandfor" | "commandFor" | "variant" | "icon" | "loading" | "asChild"> & { variant?: "primary" | "secondary" | "tertiary"; 'data-color'?: import("packages/types/dist/types").Color | Extract; icon?: boolean; loading?: boolean | import("react").ReactNode; asChild?: boolean; type?: import("react").ButtonHTMLAttributes["type"]; command?: string; commandfor?: string; commandFor?: string; } & import("react").RefAttributes, "ref"> & import("react").RefAttributes>; //# sourceMappingURL=dialog-trigger.d.ts.map