/** * Runs all project checks including package.json and workflow validation. * * @param directory - The project directory to check */ export declare function check(directory: string): void; /** * Validates package.json configuration for VersaTiles projects. * * Checks for: * - Required scripts (build, check, prepack, release) * - Recommended scripts (test, doc, upgrade, doc:graph) * - Script configurations following best practices * - Unnecessary dependencies * * @param directory - The project directory containing package.json * @throws {VrtError} If package.json is missing required scripts */ export declare function checkPackage(directory: string): void; /** * Validates GitHub Actions workflow configuration. * * Checks for the presence of expected workflow files. * * @param directory - The project directory to check */ export declare function checkWorkflow(directory: string): void;