/** * A custom hook This hook returns responsive gap and padding values that align * with NYPL design standards for responsive grids and columns. The values will * adjust based on the width of the viewport. */ declare function useResponsiveSpacing(): { responsiveGap: { base: string; md: string; xl: string; }; responsiveMargin: { base: string; md: string; xl: string; }; responsivePadding: { base: string; md: string; xl: string; }; }; export default useResponsiveSpacing;