/** * Custom error classes for Fretboard Renderer Library */ /** * Error thrown when configuration is invalid */ export declare class InvalidConfigurationError extends Error { constructor(message: string); } /** * Error thrown when a value is out of valid range */ export declare class RangeError extends Error { constructor(message: string); } /** * Error thrown when a type is invalid */ export declare class TypeError extends Error { constructor(message: string); } /** * Error thrown when a marker cannot be found */ export declare class MarkerNotFoundError extends Error { constructor(markerId: string); } /** * Error thrown when attempting to render without initialization */ export declare class NotInitializedError extends Error { constructor(); } //# sourceMappingURL=errors.d.ts.map