import { BaseError } from './errors'; export declare class BaseNativeError extends BaseError { constructor(message: string, innerError?: unknown); } export declare class FunctionDoesNotExistError extends BaseNativeError { constructor(functionName: string); } export declare class InvalidFunctionNameError extends BaseNativeError { constructor(functionName: string); }