import type { QTagInstance } from './src/types';
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
import type { SFCWithInstall } from '../../../types/helpers';
export declare const QTag: SFCWithInstall<DefineComponent<{
    closable: {
        type: BooleanConstructor;
        default: boolean;
    };
}, QTagInstance, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "close"[], "close", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
    closable: {
        type: BooleanConstructor;
        default: boolean;
    };
}>> & {
    onClose?: ((...args: any[]) => any) | undefined;
}, {
    closable: boolean;
}>>;
export type { QTagProps, QTagInstance } from './src/types';
