import { Maybe } from './Maybe';
/**
* Given a default value and a Maybe returns the default value if the Maybe is a
* Nothing or the value contained in a Just.
* @name withDefault(defaultValue: A, maybe: Maybe): A
*/
export declare const withDefault: {
(defaultValue: A, maybe: Maybe): A;
(defaultValue: A_1): (maybe: Maybe) => A_1;
};
//# sourceMappingURL=withDefault.d.ts.map