declare function truthy(value: any, message?: string): void;
declare function falsy(value: any, message?: string): void;
declare function fail(message?: string): void;
declare const _default: {
    truthy: typeof truthy;
    falsy: typeof falsy;
    fail: typeof fail;
};
export default _default;
