declare const InvalidOperation_base: import("defekt/build/lib/CustomErrorConstructor").CustomErrorConstructor<"InvalidOperation">; declare class InvalidOperation extends InvalidOperation_base { } declare const AssertionFailed_base: import("defekt/build/lib/CustomErrorConstructor").CustomErrorConstructor<"AssertionFailed">; declare class AssertionFailed extends AssertionFailed_base { constructor({ message, expected, actual, diff }: { message: string; expected?: string; actual?: string; diff?: string; }); } export { AssertionFailed, InvalidOperation };