/**
 * Represents an error related to a `nameof` operation.
 */
export declare abstract class InternalError extends Error {
    /**
     * Gets an action for reporting the error.
     */
    abstract get ReportAction(): () => void;
}
