import type { Snippet } from 'svelte';
import type { NeoFloatingStepperProps } from '../common/neo-floating-stepper.model.js';
import type { NeoDialogContext, NeoDialogProps } from './neo-dialog.model.js';
import type { NeoTooltipProps } from '../tooltips/neo-tooltip.model.js';
import type { NeoStepperContext } from '../../stepper/neo-stepper.model.js';
export type NeoDialogStepperProps<Tag extends keyof HTMLElementTagNameMap = keyof HTMLElementTagNameMap> = {
    /**
     * Element(s) to render inside the stepper.
     */
    children?: Snippet<[NeoDialogContext, NeoStepperContext]> | string;
    /**
     * Element(s) to render inside the header once open.
     */
    header?: Snippet<[NeoDialogContext, NeoStepperContext]> | string;
    /**
     * Where to place the progress bar relative to the stepper content.
     */
    progressPlacement?: NeoFloatingStepperProps['placement'];
    /**
     * The dialog element reference.
     */
    dialogRef?: NeoDialogProps<Tag>['ref'];
    /**
     * Event Handlers that fires on close.
     */
    onClose?: NeoTooltipProps['onClose'];
    /**
     * Event Handlers that fires on cancel.
     * If a promise is returned, the loading state will be set to true until the promise resolves.
     * If the function rejects, the tooltip will not close.
     */
    onCancel?: NeoFloatingStepperProps['onBeforeStep'];
    /**
     * Event Handlers that fires on confirm.
     * If a promise is returned, the loading state will be set to true until the promise resolves.
     * If the promise rejects, the tooltip will not close.
     * @param e
     */
    onConfirm?: NeoFloatingStepperProps['onBeforeStep'];
    /**
     * Optional props to pass to the dialog.
     */
    dialogProps?: Omit<NeoDialogProps<Tag>, 'ref' | 'open' | 'children' | 'header' | 'modal' | 'returnValue'>;
} & Pick<NeoDialogProps<Tag>, 'ref' | 'open' | 'modal' | 'moved' | 'returnValue' | 'closedby' | 'unmountOnClose' | 'placement' | 'movable' | 'outside' | 'elevation' | 'blur' | 'slide' | 'color' | 'filled' | 'tinted' | 'backdrop' | 'borderless' | 'flex' | 'align' | 'justify' | 'width' | 'height' | 'padding' | 'in' | 'out' | 'transition' | 'use' | 'backdropProps'> & Omit<NeoFloatingStepperProps, 'placement'>;
