import { Ref } from 'vue'; import { VueEmit } from '../interfaces'; import { AllPropsType } from '../props'; export declare const useFlow: (props: AllPropsType, emit: VueEmit, dynCmpRef: Ref) => { childMount: (cmp: unknown) => void; updateFlowStep: () => void; resetFlow: () => void; flowStep: Ref; };