export declare const CAPTURE_ALIAS_PATH_ERRORS: readonly ["TYPE_ERROR", "FORMAT_ERROR"]; type ValidationError = { tag: (typeof CAPTURE_ALIAS_PATH_ERRORS)[number]; message: string; }; type Result = { status: 'ok'; value: T; } | { status: 'error'; error: E; }; export declare function captureAliasPath(value: unknown): Result, ValidationError>; export declare function captureAliasPath(value: unknown, asString: AsString): Result, ValidationError>; export {};