export interface Spacing {
unit: number;
}
export type SpacingOptions = Partial<Spacing>;
declare const spacing: Spacing;
export default spacing;