export declare class AssertError extends Error { readonly message: string; readonly props?: any | undefined; constructor(message: string, props?: any | undefined); } export declare function assert(condition: unknown, message?: string, props?: any): asserts condition;