/** Array of paths that are invalid */ export type Paths = string[]; /** Whether or not the directory was valid */ export type ValidateResult = [valid: false, invalidRelativePaths: Paths, relativePaths: Paths] | [valid: true, invalidRelativePaths: [], relativePaths: Paths]; /** Validate a directory and its descendants */ export default function validate(fullPath: string): Promise; //# sourceMappingURL=index.d.ts.map