/** Error tagged for {@link isInvalidArgumentError} detection (native layer invalid args). */ export type InvalidArgumentError = Error & { isInvalidArgumentError: true; }; /** * Determines whether a caught value is an invalid-argument error created by * {@link createInvalidArgumentError}. Never throws. */ export declare function isInvalidArgumentError(e: unknown): e is InvalidArgumentError; /** * Builds an `Error` that signals invalid caller arguments (e.g. missing * coordinates, inconsistent gesture options). */ export declare function createInvalidArgumentError(message: string): InvalidArgumentError; //# sourceMappingURL=errors.d.ts.map