import type { Nullable } from '../../Types/Nullable'; import type { ValuesOf } from '../../Types/ValuesOf'; /** * The inset types. * * @public */ export declare const Inset: { readonly None: "none"; readonly Top: "top"; readonly Right: "right"; readonly Bottom: "bottom"; readonly Left: "left"; readonly Vertical: "vertical"; readonly Horizontal: "horizontal"; readonly All: "all"; }; /** * @public */ export type Inset = ValuesOf; /** * @public */ export declare namespace InsetFn { /** * @public */ function parse(value: Nullable>): Array; /** * @public */ function validate(values: Array): void; /** * @public */ function has(values: Array, ...conditions: Array): boolean; } //# sourceMappingURL=Inset.d.ts.map