import type { ValuesOf } from '../../Types/ValuesOf'; /** * `Trigger` - Defines the trigger type for a component. * * @public */ export declare const Trigger: { /** * The trigger is a click. */ readonly Click: "click"; /** * The trigger is a focus. */ readonly Focus: "focus"; /** * The trigger is a hover. */ readonly Hover: "hover"; /** * The trigger is a manual. */ readonly Manual: "manual"; }; /** * @public */ export type Trigger = ValuesOf; //# sourceMappingURL=Trigger.d.ts.map