export type MarginStyleTypeConfig = { top?: boolean | null; right?: boolean | null; bottom?: boolean | null; left?: boolean | null; }; export type MarginStyleType = { css?: string; value?: number; unit?: MarginStyleUnitType; excludedFields?: string[]; }; export type MarginTopStyleType = { css?: string; value?: number; unit?: MarginStyleUnitType; }; export type MarginRightStyleType = { css?: string; value?: number; unit?: MarginStyleUnitType; }; export type MarginBottomStyleType = { css?: string; value?: number; unit?: MarginStyleUnitType; }; export type MarginLeftStyleType = { css?: string; value?: number; unit?: MarginStyleUnitType; }; export type MarginStyleUnitType = "px" | "rem" | "%" | "vh" | "vw";