import { Size } from '../../../Types/Size'; import type { Spacing } from '../../../Types/Spacing'; /** * Represents the `ISpacerElementProps` interface. * * @public */ export interface ISpacerElementProps { multiplier: number; multiplierValidator: (multiplier: number) => boolean; size: Size; thickness: Spacing | Array | null; invert: boolean; } /** * @public */ export declare const DEFAULT_SPACER_ELEMENT_PROPS: ISpacerElementProps; //# sourceMappingURL=ISpacerElementProps.d.ts.map