export type PaddingStyleTypeConfig = { top?: boolean | null; right?: boolean | null; bottom?: boolean | null; left?: boolean | null; }; export type PaddingStyleType = { css?: string; value?: number; unit?: PaddingStyleUnitType; excludedFields?: string[]; }; export type PaddingTopStyleType = { css?: string; value?: number; unit?: PaddingStyleUnitType; }; export type PaddingRightStyleType = { css?: string; value?: number; unit?: PaddingStyleUnitType; }; export type PaddingBottomStyleType = { css?: string; value?: number; unit?: PaddingStyleUnitType; }; export type PaddingLeftStyleType = { css?: string; value?: number; unit?: PaddingStyleUnitType; }; export type PaddingStyleUnitType = "px" | "rem" | "%" | "vh" | "vw";