/** * A Type Guard that checks if the given value is a boolean * * @category Type Guard */ declare const isTypeBoolean: import("./matchType").MatchTypeFn<"boolean">; export { isTypeBoolean };