import type { VFileMessage } from 'vfile-message'; export type ExternalLinkResult = { url: string; ok?: boolean; skipped?: boolean; status?: number; statusText?: string; }; export type WarningKind = 'error' | 'warn' | 'info' | 'debug'; export type BuildWarning = { message: string; kind: WarningKind; note?: string | null; url?: string | null; position?: VFileMessage['position']; ruleId?: string | null; }; export type ValidatedRawConfig = { site?: Record; project?: Record; extend?: string[]; }; //# sourceMappingURL=types.d.ts.map