/** * Interface for the result of checking if a directory contains a Fluent (ServiceNow SDK) application */ export interface FluentAppCheckResult { /** Whether a Fluent app was found in the directory */ hasApp: boolean; /** The scope name of the app, if found */ scopeName?: string; /** The package name of the app, if found */ packageName?: string; /** Error message if an error occurred during the check */ errorMessage?: string; } /** * Utility class for validating Fluent (ServiceNow SDK) applications */ export declare class FluentAppValidator { /** * Check if the directory already contains a ServiceNow/Fluent application * @param directory Directory to check * @returns Object containing check results and any existing app info */ static checkFluentAppExists(directory: string): Promise; } //# sourceMappingURL=fluentAppValidator.d.ts.map