export declare type SetupStepDescription = { position?: number; key: string; title: string; description: string; href: string; cta: string; helpLink: string; showCtaOnCommunity?: boolean; check?: () => Promise; outcome?: () => Promise; disabled: () => Promise; runModes: string[]; }; export declare const getSetupStepDescriptions: (modelId?: string) => { position: number; key: string; title: string; description: string; href: string; cta: string; helpLink: string; showCtaOnCommunity?: boolean; check?: () => Promise; outcome?: () => Promise; disabled: () => Promise; runModes: string[]; }[];