import { SvelteComponentTyped } from "svelte"; import type { Writable } from 'svelte/store'; import type { StepperEventDispatcher, StepperState } from './types.js'; import type { Transition, TransitionParams } from '../../index.js'; declare class __sveltets_Render { props(): { [x: string]: any; locked?: boolean | undefined; /** Provide arbitrary classes to the step header region.*/ regionHeader?: string | undefined; /** Provide arbitrary classes to the step content region.*/ regionContent?: string | undefined; /** Provide arbitrary classes to the step navigation region.*/ regionNavigation?: string | undefined; state?: Writable | undefined; dispatchParent?: StepperEventDispatcher | undefined; stepTerm?: string | undefined; gap?: string | undefined; justify?: string | undefined; buttonBack?: string | undefined; buttonBackType?: "button" | "reset" | "submit" | undefined; buttonBackLabel?: string | undefined; buttonNext?: string | undefined; buttonNextType?: "button" | "reset" | "submit" | undefined; buttonNextLabel?: string | undefined; buttonComplete?: string | undefined; buttonCompleteType?: "button" | "reset" | "submit" | undefined; buttonCompleteLabel?: string | undefined; /** Enable/Disable transitions*/ transitions?: boolean | undefined; /** Provide the transition to used on entry.*/ transitionIn?: TransitionIn | undefined; /** Transition params provided to `transitionIn`.*/ transitionInParams?: TransitionParams | undefined; /** Provide the transition to used on exit.*/ transitionOut?: TransitionOut | undefined; /** Transition params provided to `transitionOut`.*/ transitionOutParams?: TransitionParams | undefined; }; events(): {} & { [evt: string]: CustomEvent; }; slots(): { header: {}; default: {}; navigation: {}; }; } export type StepProps = ReturnType<__sveltets_Render['props']>; export type StepEvents = ReturnType<__sveltets_Render['events']>; export type StepSlots = ReturnType<__sveltets_Render['slots']>; export default class Step extends SvelteComponentTyped, StepEvents, StepSlots> { } export {};