import { type ButtonKind } from './NeButton.vue';
import { type PropType } from 'vue';
export interface NeNotificationV2 {
    id: string;
    kind: 'info' | 'warning' | 'error' | 'success';
    title: string;
    description?: string;
    timestamp?: Date;
    payload?: Record<string, unknown>;
    isShown?: boolean;
    firstButtonLabel?: string;
    firstButtonAction?: string;
    firstButtonKind?: ButtonKind;
    secondButtonLabel?: string;
    secondButtonAction?: string;
    secondButtonKind?: ButtonKind;
}
declare var __VLS_8: {};
type __VLS_Slots = {} & {
    icon?: (props: typeof __VLS_8) => any;
};
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
    notification: {
        type: PropType<NeNotificationV2>;
        required: true;
    };
    srCloseLabel: {
        type: StringConstructor;
        required: true;
    };
    firstActionOnRight: {
        type: BooleanConstructor;
        default: boolean;
    };
    showCloseButton: {
        type: BooleanConstructor;
        default: boolean;
    };
    showTimestamp: {
        type: BooleanConstructor;
        default: boolean;
    };
    fullWidth: {
        type: BooleanConstructor;
        default: boolean;
    };
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
    close: (...args: any[]) => void;
    action: (...args: any[]) => void;
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
    notification: {
        type: PropType<NeNotificationV2>;
        required: true;
    };
    srCloseLabel: {
        type: StringConstructor;
        required: true;
    };
    firstActionOnRight: {
        type: BooleanConstructor;
        default: boolean;
    };
    showCloseButton: {
        type: BooleanConstructor;
        default: boolean;
    };
    showTimestamp: {
        type: BooleanConstructor;
        default: boolean;
    };
    fullWidth: {
        type: BooleanConstructor;
        default: boolean;
    };
}>> & Readonly<{
    onClose?: ((...args: any[]) => any) | undefined;
    onAction?: ((...args: any[]) => any) | undefined;
}>, {
    fullWidth: boolean;
    showCloseButton: boolean;
    showTimestamp: boolean;
    firstActionOnRight: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
//# sourceMappingURL=NeToastNotificationV2.vue.d.ts.map