interface IValidationResult { id: string; label: string; name: string; issues: string[]; } declare const _default: { checkFlowValidation: (flowId: string, workspaceId?: string) => Promise; }; export default _default;