/// export declare type NormalizeProps = Readonly<{ hasHorizontalSpacing?: boolean; noHorizontalSpacing?: boolean; }>; /** * Util method to normalize horizontal spacing * using !important because this should never be overridden */ export declare const normalizeHorizontally: (props: NormalizeProps) => string; export declare type LayoutNormalizerProps = Readonly<{ useLegacyNormalization?: boolean; }>; export declare const LayoutNormalizer: ({ useLegacyNormalization }: LayoutNormalizerProps) => JSX.Element;