gd-design-library 0.0.7 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. package/components/core/Button/Button.types.d.ts +2 -0
  2. package/components/core/Image/Image.types.d.ts +1 -1
  3. package/components/core/Select/Select.types.d.ts +4 -3
  4. package/components/core/Select/constants.d.ts +1 -0
  5. package/components/core/Snackbar/StyledSnackbar.d.ts +1 -1
  6. package/components/core/Typography/Typography.types.d.ts +3 -3
  7. package/components/domainSpecific/Card/Card.d.ts +28 -0
  8. package/components/domainSpecific/Card/Card.types.d.ts +55 -0
  9. package/components/domainSpecific/Card/CardButton.d.ts +4 -0
  10. package/components/domainSpecific/Card/CardCounter.d.ts +4 -0
  11. package/components/domainSpecific/Card/CardDescription.d.ts +4 -0
  12. package/components/domainSpecific/Card/CardImage.d.ts +4 -0
  13. package/components/domainSpecific/Card/CardPrice.d.ts +2 -0
  14. package/components/domainSpecific/Card/CardRating.d.ts +2 -0
  15. package/components/domainSpecific/Card/CardTitle.d.ts +4 -0
  16. package/components/domainSpecific/Card/StyledCard.d.ts +30 -0
  17. package/components/domainSpecific/Card/constants.d.ts +19 -0
  18. package/components/domainSpecific/Card/index.d.ts +2 -0
  19. package/components/domainSpecific/Card/utils.d.ts +0 -0
  20. package/components/domainSpecific/Counter/Counter.d.ts +1 -2
  21. package/components/domainSpecific/Price/Price.d.ts +1 -2
  22. package/components/domainSpecific/Price/index.d.ts +2 -1
  23. package/components/domainSpecific/Search/StyledSearch.d.ts +1 -1
  24. package/components/domainSpecific/Search/renderers.d.ts +1 -1
  25. package/components/domainSpecific/index.d.ts +1 -0
  26. package/components/index.types.d.ts +18 -0
  27. package/components/layout/utils.d.ts +2 -2
  28. package/index.mjs +4716 -7832
  29. package/package.json +1 -1
  30. package/tokens/button.d.ts +3 -0
  31. package/tokens/card.d.ts +225 -0
  32. package/tokens/defaultTheme.d.ts +228 -0
  33. package/tokens/display.d.ts +1 -0
  34. package/tokens/index.d.ts +228 -0
  35. package/tokens/shadow.d.ts +3 -0
  36. package/tokens/utils.d.ts +1 -0
@@ -35,6 +35,7 @@ export interface ButtonProps extends CommonCoreComponentProps<ButtonVariant, But
35
35
  onClick?: (event: MouseEvent<HTMLButtonElement>) => void;
36
36
  type?: ButtonTypes | `${ButtonTypes}`;
37
37
  disabled?: boolean;
38
+ fullWidth?: boolean;
38
39
  isIcon?: boolean;
39
40
  ariaLabel?: ButtonAriaLabel | `${ButtonAriaLabel}`;
40
41
  ariaPressed?: boolean;
@@ -44,4 +45,5 @@ export interface ButtonProps extends CommonCoreComponentProps<ButtonVariant, But
44
45
  }
45
46
  export interface StyledButtonProps extends CommonCoreStyledComponentProps<ButtonVariant, ButtonColorVariant> {
46
47
  $isIcon?: boolean;
48
+ $fullWidth?: boolean;
47
49
  }
@@ -17,7 +17,7 @@ export interface StyledImageWrapperProps extends Pick<ImageProps, 'width' | 'hei
17
17
  }
18
18
  export interface StyledImageProps extends Pick<ImageProps, 'objectFit'> {
19
19
  theme: Theme;
20
- isLoading: boolean;
20
+ isLoading?: boolean;
21
21
  }
22
22
  export interface StyledImagePlaceholderProps {
23
23
  theme: Theme;
@@ -1,5 +1,5 @@
1
1
  import { ReactNode, MouseEvent } from 'react';
2
- import { Theme } from '../../../hooks';
2
+ import { Theme } from '../../../hooks/useTheme';
3
3
  import { CommonCoreComponentProps, CommonCoreStyledComponentProps } from '..';
4
4
  import { OnSelectProps } from '../types/events.types';
5
5
  export interface Option {
@@ -26,8 +26,9 @@ export interface SelectProps<T extends HTMLElement = HTMLDivElement> extends Exc
26
26
  initiator?: ReactNode;
27
27
  width?: number | string;
28
28
  emptyItemsResult?: string;
29
- renderOption?: (value: renderOptionType) => React.ReactNode;
30
- renderDropdownHeader?: (theme: Theme, dropdownParams?: DropdownParams) => React.ReactNode;
29
+ selectedItem?: string;
30
+ renderOption?: (value: renderOptionType) => ReactNode;
31
+ renderDropdownHeader?: (theme: Theme, dropdownParams?: DropdownParams) => ReactNode;
31
32
  autoOpen?: boolean;
32
33
  activeIndex?: string | number;
33
34
  }
@@ -1 +1,2 @@
1
1
  export declare const COMPONENT_NAME = "Select";
2
+ export declare const DEFAULT_SELECTED_VALUE = "Select";
@@ -1,4 +1,4 @@
1
- import { Theme } from '../../../hooks';
1
+ import { Theme } from '../../../hooks/useTheme';
2
2
  import { SnackbarPosition, StyledSnackbarProps } from './Snackbar.types';
3
3
  export declare const StyledSnackbar: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledSnackbarProps>> & string;
4
4
  export declare const CloseButton: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
@@ -13,7 +13,7 @@ export declare enum TextAlign {
13
13
  Revert = "revert",
14
14
  RevertLayer = "revert-layer",
15
15
  Unset = "unset",
16
- Webkitcenter = "-webkit-center",
16
+ WebkitCenter = "-webkit-center",
17
17
  MozCenter = "-moz-center"
18
18
  }
19
19
  export declare enum TypographyVariant {
@@ -44,12 +44,12 @@ export interface OnChangeCallbackProps {
44
44
  event: FormEvent<HTMLDivElement>;
45
45
  content: string;
46
46
  }
47
- export interface StyledTypographyType extends CommonCoreStyledComponentProps<TypographyVariant> {
47
+ export interface StyledTypographyType extends CommonCoreStyledComponentProps<TypographyVariant, string> {
48
48
  as?: TypographyVariant;
49
49
  $size?: SizeVariant;
50
50
  $align: TextAlign;
51
51
  }
52
- export interface TypographyProps extends CommonCoreComponentProps<TypographyVariant> {
52
+ export interface TypographyProps extends CommonCoreComponentProps<TypographyVariant, string> {
53
53
  editable?: boolean;
54
54
  as?: ElementType;
55
55
  size?: SizeVariant;
@@ -0,0 +1,28 @@
1
+ import { CardProps } from './Card.types';
2
+ export declare const Card: import('react').ForwardRefExoticComponent<CardProps & {
3
+ children?: import('react').ReactNode | undefined;
4
+ } & import('react').RefAttributes<HTMLDivElement>> & {
5
+ Row: import('react').ForwardRefExoticComponent<import('../../layout/Row/Row.types').RowProps & {
6
+ children?: import('react').ReactNode | undefined;
7
+ } & import('react').RefAttributes<HTMLDivElement>>;
8
+ Column: import('react').ForwardRefExoticComponent<import('../../layout/Column/Column.types').ColumnProps & {
9
+ children?: import('react').ReactNode | undefined;
10
+ } & import('react').RefAttributes<HTMLDivElement>>;
11
+ Counter: import('react').ForwardRefExoticComponent<import('../..').CardCounterProps & {
12
+ children?: import('react').ReactNode | undefined;
13
+ } & import('react').RefAttributes<HTMLDivElement>>;
14
+ Image: import('react').ForwardRefExoticComponent<import('../..').CardImageProps & {
15
+ children?: import('react').ReactNode | undefined;
16
+ } & import('react').RefAttributes<HTMLDivElement>>;
17
+ Price: import('react').ForwardRefExoticComponent<import('../..').CardPriceProps & import('react').RefAttributes<HTMLDivElement>>;
18
+ Button: import('react').ForwardRefExoticComponent<import('../..').CardButtonProps & {
19
+ children?: import('react').ReactNode | undefined;
20
+ } & import('react').RefAttributes<HTMLDivElement>>;
21
+ Title: import('react').ForwardRefExoticComponent<import('../..').CardTextProps & {
22
+ children?: import('react').ReactNode | undefined;
23
+ } & import('react').RefAttributes<HTMLElement>>;
24
+ Description: import('react').ForwardRefExoticComponent<import('../..').CardTextProps & {
25
+ children?: import('react').ReactNode | undefined;
26
+ } & import('react').RefAttributes<HTMLElement>>;
27
+ Rating: import('react').ForwardRefExoticComponent<import('../..').CardRatingProps & import('react').RefAttributes<HTMLDivElement>>;
28
+ };
@@ -0,0 +1,55 @@
1
+ import { PriceProps, StyledPriceProps, ImageProps, StyledImageProps, ButtonProps, CounterProps, CounterStyledProps, TypographyProps, StyledTypographyType, RatingProps, CommonStyledComponentProps, BoxComponentProps, BoxStyledComponentProps } from '../..';
2
+ import { EnumOrPrimitive, TabIndex } from '../../../types';
3
+ export declare enum CardVariant {
4
+ Vertical = "Vertical",
5
+ Horizontal = "horizontal"
6
+ }
7
+ export declare enum CardSizeVariant {
8
+ Default = "default",
9
+ Sm = "sm"
10
+ }
11
+ export interface CardProps extends Exclude<BoxComponentProps, 'minWidth' | 'minHeight'> {
12
+ variant?: EnumOrPrimitive<CardVariant>;
13
+ isBordered?: boolean;
14
+ tabIndex?: TabIndex;
15
+ isHighlighted?: boolean;
16
+ }
17
+ export interface CardStyledProps extends Exclude<BoxStyledComponentProps, '$minWidth' | '$minHeight'> {
18
+ $variant: EnumOrPrimitive<CardVariant>;
19
+ $isBordered?: boolean;
20
+ $isHighlighted?: boolean;
21
+ tabIndex?: TabIndex;
22
+ }
23
+ export interface CardCommonProps {
24
+ sizeVariant?: EnumOrPrimitive<CardSizeVariant>;
25
+ cardVariant?: EnumOrPrimitive<CardVariant>;
26
+ }
27
+ export interface CardCommonStyledProps {
28
+ $sizeVariant: EnumOrPrimitive<CardSizeVariant>;
29
+ $cardVariant: EnumOrPrimitive<CardVariant>;
30
+ }
31
+ export interface CardTextProps extends CardCommonProps, TypographyProps {
32
+ }
33
+ export interface CardTextStyledProps extends CardCommonStyledProps, StyledTypographyType {
34
+ }
35
+ export interface CardRatingProps extends CardCommonProps, RatingProps {
36
+ label?: string;
37
+ }
38
+ export interface CardRatingStyledProps extends CardCommonStyledProps, CommonStyledComponentProps {
39
+ }
40
+ export interface CardButtonProps extends CardCommonProps, ButtonProps {
41
+ }
42
+ export interface CardButtonStyledProps extends CardCommonStyledProps, CommonStyledComponentProps {
43
+ }
44
+ export interface CardPriceProps extends CardCommonProps, PriceProps {
45
+ }
46
+ export interface CardPriceStyledProps extends CardCommonStyledProps, StyledPriceProps {
47
+ }
48
+ export interface CardImageProps extends CardCommonProps, ImageProps {
49
+ }
50
+ export interface CardImageStyledProps extends CardCommonStyledProps, Exclude<StyledImageProps, 'isLoading'> {
51
+ }
52
+ export interface CardCounterProps extends CardCommonProps, CounterProps {
53
+ }
54
+ export interface CardCounterStyledProps extends CardCommonStyledProps, CounterStyledProps {
55
+ }
@@ -0,0 +1,4 @@
1
+ import { CardButtonProps } from '../..';
2
+ export declare const CardButton: import('react').ForwardRefExoticComponent<CardButtonProps & {
3
+ children?: import('react').ReactNode | undefined;
4
+ } & import('react').RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,4 @@
1
+ import { CardCounterProps } from './Card.types';
2
+ export declare const CardCounter: import('react').ForwardRefExoticComponent<CardCounterProps & {
3
+ children?: import('react').ReactNode | undefined;
4
+ } & import('react').RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,4 @@
1
+ import { CardTextProps } from './Card.types';
2
+ export declare const CardDescription: import('react').ForwardRefExoticComponent<CardTextProps & {
3
+ children?: import('react').ReactNode | undefined;
4
+ } & import('react').RefAttributes<HTMLElement>>;
@@ -0,0 +1,4 @@
1
+ import { CardImageProps } from './Card.types';
2
+ export declare const CardImage: import('react').ForwardRefExoticComponent<CardImageProps & {
3
+ children?: import('react').ReactNode | undefined;
4
+ } & import('react').RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,2 @@
1
+ import { CardPriceProps } from './Card.types';
2
+ export declare const CardPrice: import('react').ForwardRefExoticComponent<CardPriceProps & import('react').RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,2 @@
1
+ import { CardRatingProps } from './Card.types';
2
+ export declare const CardRating: import('react').ForwardRefExoticComponent<CardRatingProps & import('react').RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,4 @@
1
+ import { CardTextProps } from './Card.types';
2
+ export declare const CardTitle: import('react').ForwardRefExoticComponent<CardTextProps & {
3
+ children?: import('react').ReactNode | undefined;
4
+ } & import('react').RefAttributes<HTMLElement>>;
@@ -0,0 +1,30 @@
1
+ import { CardButtonStyledProps, CardImageStyledProps } from '../..';
2
+ import { CardStyledProps, CardTextStyledProps, CardRatingStyledProps, CardPriceStyledProps, CardCounterStyledProps } from './Card.types';
3
+ export declare const StyledCard: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, CardStyledProps>> & string;
4
+ export declare const StyledCardTitle: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components/dist/types').Substitute<import('styled-components/dist/types').Substitute<Omit<import('../..').TypographyProps & {
5
+ children?: import('react').ReactNode | undefined;
6
+ } & import('react').RefAttributes<HTMLElement>, "ref"> & {
7
+ ref?: ((instance: HTMLElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLElement> | null | undefined;
8
+ }, Omit<import('../..').TypographyProps & {
9
+ children?: import('react').ReactNode | undefined;
10
+ } & import('react').RefAttributes<HTMLElement>, "ref"> & {
11
+ ref?: ((instance: HTMLElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLElement> | null | undefined;
12
+ }>, CardTextStyledProps>, never>> & string & Omit<import('react').ForwardRefExoticComponent<import('../..').TypographyProps & {
13
+ children?: import('react').ReactNode | undefined;
14
+ } & import('react').RefAttributes<HTMLElement>>, keyof import('react').Component<any, {}, any>>;
15
+ export declare const StyledCardDescription: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('styled-components/dist/types').Substitute<import('styled-components/dist/types').Substitute<Omit<import('../..').TypographyProps & {
16
+ children?: import('react').ReactNode | undefined;
17
+ } & import('react').RefAttributes<HTMLElement>, "ref"> & {
18
+ ref?: ((instance: HTMLElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLElement> | null | undefined;
19
+ }, Omit<import('../..').TypographyProps & {
20
+ children?: import('react').ReactNode | undefined;
21
+ } & import('react').RefAttributes<HTMLElement>, "ref"> & {
22
+ ref?: ((instance: HTMLElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLElement> | null | undefined;
23
+ }>, CardTextStyledProps>, never>> & string & Omit<import('react').ForwardRefExoticComponent<import('../..').TypographyProps & {
24
+ children?: import('react').ReactNode | undefined;
25
+ } & import('react').RefAttributes<HTMLElement>>, keyof import('react').Component<any, {}, any>>;
26
+ export declare const StyledCardRating: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, CardRatingStyledProps>> & string;
27
+ export declare const StyledCardButton: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, CardButtonStyledProps>> & string;
28
+ export declare const StyledCardImage: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, CardImageStyledProps>> & string;
29
+ export declare const StyledCardPrice: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, CardPriceStyledProps>> & string;
30
+ export declare const StyledCardCounter: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, CardCounterStyledProps>> & string;
@@ -0,0 +1,19 @@
1
+ import { TypographyVariant } from '../../core/Typography/Typography.types';
2
+ export declare const COMPONENT_NAME = "Card";
3
+ export declare const CARD_BUTTON_COMPONENT_NAME = "CardButton";
4
+ export declare const CARD_DESCRIPTION_COMPONENT_NAME = "CardDescription";
5
+ export declare const CARD_PRICE_COMPONENT_NAME = "CardPrice";
6
+ export declare const CARD_TITLE_COMPONENT_NAME = "CardTitle";
7
+ export declare const CARD_RATING_COMPONENT_NAME = "CardRating";
8
+ export declare const CARD_IMAGE_COMPONENT_NAME = "CardImage";
9
+ export declare const CARD_COUNTER_COMPONENT_NAME = "CardCounter";
10
+ export declare const TITLE_SIZE: {
11
+ default: TypographyVariant;
12
+ sm: TypographyVariant;
13
+ };
14
+ export declare const DESCRIPTION_SIZE: {
15
+ default: TypographyVariant;
16
+ sm: TypographyVariant;
17
+ };
18
+ export declare const CARD_RATING_DEFAULT_VAL = 0;
19
+ export declare const CARD_RATING_DEFAULT_SIZE = "sm";
@@ -0,0 +1,2 @@
1
+ export * from './Card';
2
+ export * from './Card.types';
File without changes
@@ -1,3 +1,2 @@
1
1
  import { CounterProps } from './Counter.types';
2
- declare const Counter: import('react').ForwardRefExoticComponent<CounterProps & import('react').RefAttributes<HTMLDivElement>>;
3
- export default Counter;
2
+ export declare const Counter: import('react').ForwardRefExoticComponent<CounterProps & import('react').RefAttributes<HTMLDivElement>>;
@@ -1,5 +1,4 @@
1
1
  import { PriceProps } from './Price.types';
2
- declare const Price: import('react').ForwardRefExoticComponent<PriceProps & {
2
+ export declare const Price: import('react').ForwardRefExoticComponent<PriceProps & {
3
3
  children?: import('react').ReactNode | undefined;
4
4
  } & import('react').RefAttributes<HTMLDivElement>>;
5
- export default Price;
@@ -1 +1,2 @@
1
- export { default as Price } from './Price';
1
+ export { Price } from './Price';
2
+ export * from './Price.types';
@@ -1,4 +1,4 @@
1
- import { Theme } from '../../../hooks';
1
+ import { Theme } from '../../../hooks/useTheme';
2
2
  import { IconProps } from '../../core/Icon';
3
3
  export declare const StyledSearch: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
4
4
  theme: Theme;
@@ -1,4 +1,4 @@
1
- import { Theme } from '../../../hooks';
1
+ import { Theme } from '../../../hooks/useTheme';
2
2
  import { DropdownParams, Option } from '../../core/Select';
3
3
  export declare const renderDropdownHeader: (theme: Theme, dropdownParams: DropdownParams) => import("react/jsx-runtime").JSX.Element;
4
4
  export declare const defaultRenderOption: (item: Partial<Option>) => import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,4 @@
1
+ export * from './Card';
1
2
  export * from './Counter';
2
3
  export * from './Header';
3
4
  export * from './Price';
@@ -9,6 +9,24 @@ export interface CommonStyledComponentProps {
9
9
  $styles?: CSSObject;
10
10
  theme: typeof defaultTheme;
11
11
  }
12
+ export interface BoxComponentProps extends CommonComponentProps {
13
+ overflow?: string;
14
+ minWidth?: string;
15
+ width?: string;
16
+ maxWidth?: string;
17
+ minHeight?: string;
18
+ height?: string;
19
+ maxHeight?: string;
20
+ }
21
+ export interface BoxStyledComponentProps extends CommonStyledComponentProps {
22
+ $overflow?: string;
23
+ $minWidth?: string;
24
+ $width?: string;
25
+ $maxWidth?: string;
26
+ $minHeight?: string;
27
+ $height?: string;
28
+ $maxHeight?: string;
29
+ }
12
30
  export type AlignType = 'start' | 'center' | 'end' | 'stretch';
13
31
  export type JustifyType = 'start' | 'center' | 'end' | 'between' | 'around';
14
32
  export declare enum SizeVariant {
@@ -1,4 +1,4 @@
1
1
  import { AlignType, JustifyType } from '../index.types';
2
- export declare const calculateAlign: (align: AlignType) => "stretch" | "center" | "flex-end" | "flex-start";
3
- export declare const calculateJustify: (justify: JustifyType) => "space-around" | "space-between" | "center" | "flex-end" | "flex-start";
2
+ export declare const calculateAlign: (align: AlignType) => "flex-start" | "center" | "flex-end" | "stretch";
3
+ export declare const calculateJustify: (justify: JustifyType) => "flex-start" | "center" | "flex-end" | "space-between" | "space-around";
4
4
  export declare const calculateGutter: (gutter?: number | string) => string;