import * as _sinclair_typebox5651 from "@sinclair/typebox";
import { ObjectOptions, Static, StringOptions } from "@sinclair/typebox";

//#region src/shared/bricks/props/border.d.ts
declare function border(opts?: ObjectOptions): _sinclair_typebox5651.TObject<{
  width: _sinclair_typebox5651.TUnsafe<"border" | "border-0" | "border-2" | "border-4" | "border-8">;
  color: _sinclair_typebox5651.TString;
}>;
type BorderSettings = Static<ReturnType<typeof border>>;
declare function rounding(opts?: StringOptions): _sinclair_typebox5651.TOptional<_sinclair_typebox5651.TUnsafe<"rounded-md" | "rounded-auto" | "rounded-none" | "rounded-sm" | "rounded-lg" | "rounded-xl" | "rounded-2xl" | "rounded-full">>;
type RoundingSettings = Static<ReturnType<typeof rounding>>;
//#endregion
export { BorderSettings, RoundingSettings, border, rounding };
//# sourceMappingURL=border.d.ts.map