/**
 *
 * GalleryRotateRight rotates the active item 90° clockwise.
 *
 * [Live Demo](https://www.primevue.dev/gallery/)
 *
 * @module galleryrotateright
 *
 */
import type { DefineComponent, DesignToken, EmitFn, PassThrough } from '@primevue/core';
import type { ComponentHooks } from '@primevue/core/basecomponent';
import type { PassThroughOptions } from 'primevue/passthrough';
import type { ButtonHTMLAttributes, Component, VNode } from 'vue';

export declare type GalleryRotateRightPassThroughOptionType = GalleryRotateRightPassThroughAttributes | ((options: GalleryRotateRightPassThroughMethodOptions) => GalleryRotateRightPassThroughAttributes | string) | string | null | undefined;

/**
 * Custom passthrough(pt) option method.
 */
export interface GalleryRotateRightPassThroughMethodOptions {
    /**
     * Defines instance.
     */
    instance: any;
    /**
     * Defines valid properties.
     */
    props: GalleryRotateRightProps;
    /**
     * Defines valid attributes.
     */
    attrs: any;
    /**
     * Defines parent options.
     */
    parent: any;
    /**
     * Defines passthrough(pt) options in global config.
     */
    global: object | undefined;
}

/**
 * Custom passthrough(pt) options.
 * @see {@link GalleryRotateRightProps.pt}
 */
export interface GalleryRotateRightPassThroughOptions {
    /**
     * Used to pass attributes to the root's DOM element.
     */
    root?: GalleryRotateRightPassThroughOptionType;
    /**
     * Used to manage all lifecycle hooks.
     * @see {@link BaseComponent.ComponentHooks}
     */
    hooks?: ComponentHooks;
}

/**
 * Custom passthrough attributes for each DOM elements.
 */
export interface GalleryRotateRightPassThroughAttributes {
    [key: string]: any;
}

/**
 * Defines valid properties in GalleryRotateRight component.
 */
export interface GalleryRotateRightProps {
    /**
     * Use to change the HTML tag of root element.
     * @defaultValue BUTTON
     */
    as?: string | Component | undefined;
    /**
     * When enabled, it changes the default rendered element for the one passed as a child element.
     * @defaultValue false
     */
    asChild?: boolean | undefined;
    /**
     * It generates scoped CSS variables using design tokens for the component.
     */
    dt?: DesignToken<any>;
    /**
     * Used to pass attributes to DOM elements inside the component.
     */
    pt?: PassThrough<GalleryRotateRightPassThroughOptions>;
    /**
     * Used to configure passthrough(pt) options of the component.
     */
    ptOptions?: PassThroughOptions;
    /**
     * When enabled, it removes component related styles in the core.
     * @defaultValue false
     */
    unstyled?: boolean;
}

/**
 * Root element attributes forwarded to the consumer when `asChild` is enabled.
 */
export interface GalleryRotateRightA11yAttrs extends ButtonHTMLAttributes {
    /**
     * Marker attribute used by Gallery to identify the dispatched action.
     */
    'data-action': 'rotate-right';
    /**
     * Click handler that dispatches the `rotate-right` action to the active item.
     */
    onClick: (event: MouseEvent) => void;
}

/**
 * Defines valid slots in GalleryRotateRight component.
 */
export interface GalleryRotateRightSlots {
    /**
     * Custom content template. Receives scope props when `asChild` is enabled.
     * @param {Object} scope - default slot's params.
     */
    default(scope: {
        /**
         * Computed class name for the button root.
         */
        class: string | object | Array<string | object>;
        /**
         * Click handler to spread on the consumer's root element.
         */
        onClick: (event: MouseEvent) => void;
    }): VNode[];
}

/**
 * Defines valid emits in GalleryRotateRight component.
 */
export interface GalleryRotateRightEmitsOptions {}

export declare type GalleryRotateRightEmits = EmitFn<GalleryRotateRightEmitsOptions>;

/**
 * **PrimeVue - GalleryRotateRight**
 *
 * _GalleryRotateRight is a helper component for Gallery component._
 *
 * [Live Demo](https://www.primevue.dev/gallery/)
 * --- ---
 * ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
 *
 * @group Component
 *
 */
declare const GalleryRotateRight: DefineComponent<GalleryRotateRightProps, GalleryRotateRightSlots, GalleryRotateRightEmits>;

declare module 'vue' {
    export interface GlobalComponents {
        GalleryRotateRight: DefineComponent<GalleryRotateRightProps, GalleryRotateRightSlots, GalleryRotateRightEmits>;
    }
}

export default GalleryRotateRight;
