import { HelpfulError, HelpfulErrorMetadata } from './HelpfulError'; /** * UnexpectedCodePathError errors are used to explicitly declare that we've reached a code path that should never have been reached */ export declare class UnexpectedCodePathError extends HelpfulError { constructor(message: string, metadata?: HelpfulErrorMetadata); }