import { IType } from "../type"; /** * Maybe will make a type nullable, and also null by default. * * @export * @alias types.maybe * @template S * @template T * @param {IType} type The type to make nullable * @returns {(IType)} */ export declare function maybe(type: IType): IType;