import { CustomElementStateMetadata } from "../../../interfaces"; /** * Mixin that handles errors * @param Base */ declare const ErrorableMixin: (Base: any) => { new (): { [x: string]: any; renderError(): any; /** * Extracts the error message from the error object * @returns The error message from the server */ getErrorMessage(): string; }; [x: string]: any; readonly state: Record; }; export default ErrorableMixin; //# sourceMappingURL=ErrorableMixin.d.ts.map