import type { AppConfig } from '@nuxt/schema';
import theme from '#build/b24ui/button';
import type { LinkProps } from './Link.vue';
import type { UseComponentIconsProps } from '../composables/useComponentIcons';
import type { ComponentConfig } from '../types/utils';
type Button = ComponentConfig<typeof theme, AppConfig, 'button'>;
export interface ButtonProps extends Omit<UseComponentIconsProps, 'trailing' | 'trailingIcon'>, Omit<LinkProps, 'raw' | 'custom'> {
    label?: string;
    /**
     * @defaultValue 'default'
     */
    color?: Button['variants']['color'];
    activeColor?: Button['variants']['color'];
    /**
     * @defaultValue 'normal'
     */
    depth?: Button['variants']['depth'];
    activeDepth?: Button['variants']['depth'];
    /**
     * @defaultValue 'md'
     */
    size?: Button['variants']['size'];
    /**
     * Rounds the corners of the button
     * @defaultValue false
     */
    rounded?: boolean;
    /**
     * Render the button full width
     * @defaultValue false
     */
    block?: boolean;
    /**
     * Set loading state automatically based on the `@click` promise state
     * @defaultValue false
     */
    loadingAuto?: boolean;
    /**
     * Disable uppercase label
     * @defaultValue false
     */
    normalCase?: boolean;
    /**
     * Shows LoaderWaitIcon in loading mode
     * @defaultValue false
     */
    useWait?: boolean;
    /**
     * Shows LoaderClockIcon icon in loading mode
     * @defaultValue false
     */
    useClock?: boolean;
    /**
     * Shows icons.chevronDown on the right side
     * @defaultValue false
     */
    useDropdown?: boolean;
    onClick?: ((event: MouseEvent) => void | Promise<void>) | Array<((event: MouseEvent) => void | Promise<void>)>;
    class?: any;
    /**
     * The class to apply when the link is active
     * @defaultValue ''
     */
    activeClass?: string;
    /**
     * The class to apply when the link is inactive
     * @defaultValue ''
     */
    inactiveClass?: string;
    b24ui?: Button['slots'];
}
export interface ButtonSlots {
    leading(props?: {}): any;
    default(props?: {}): any;
    trailing(props?: {}): any;
}
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ButtonProps> & Readonly<{}>, {
    type: "reset" | "submit" | "button";
    activeClass: string;
    active: boolean;
    inactiveClass: string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ButtonSlots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
