import { CMCComponentProps } from './base-component'; import { ISSOConfiguration } from '@frontegg/redux-store'; export interface SsoGuideDialogProps extends CMCComponentProps { } export interface SsoGuideDialogComponentProps { id?: string; initialGuidePath?: string; initialSsoConfiguration?: ISSOConfiguration; onClose: (result: SsoGuideDialogResult) => void; showSelector?: boolean; } export interface SsoGuideDialogResult { finished: boolean; ssoConfiguration?: ISSOConfiguration; guidePath?: string; }