import { Breakpoint } from './useBreakpoint.js'; type ResponsiveObject = { [key in Breakpoint]?: T; }; type ResponsiveValue = T | ResponsiveObject; declare function getResponsiveValue(responsiveValue: ResponsiveValue, currentBreakpoint: Breakpoint): T | undefined; export { ResponsiveValue, getResponsiveValue };