import { type ReactNode } from 'react'; type Props = Record; type GenericChildrenType = { children?: ReactNode; }; export declare const subtractOnePixel: (breakpoint: string) => string; export declare const useMediaQueries: (propQueries?: Props) => { queries: { [key: string]: boolean; isSmall: boolean; isMedium: boolean; isLarge: boolean; isMediumOrSmaller: boolean; isMediumOrLarger: boolean; }; components: { [key: string]: (props: GenericChildrenType) => JSX.Element; SmallOnly: (props: GenericChildrenType) => JSX.Element; MediumOnly: (props: GenericChildrenType) => JSX.Element; LargeOnly: (props: GenericChildrenType) => JSX.Element; MediumOrSmaller: (props: GenericChildrenType) => JSX.Element; MediumOrLarger: (props: GenericChildrenType) => JSX.Element; }; }; export {};