declare const mediaQueries: { sm: string; md: string; lg: string; xlg: string; max: string; }; /** * Gives an ID to the markdown components. * @param {string} label component name string * @returns string for component ID */ declare const useId: (label: string) => string; /** * Function that returns the viewport media dimensions. * @param {string} query string * @returns boolean stating if it matches viewport dimensions */ declare const useMatchMedia: (query: string) => boolean | undefined; /** * Adds a prefix specific to the carbon platform mdx components to the provided string. This is * often used in conjunction with the scss utility `with-prefix` to assign unique class names to * styles for components. * * @param {string} className The string to which to add a prefix. * @returns A prefixed string. */ declare function withPrefix(className: string): string; export { mediaQueries, useId, useMatchMedia, withPrefix };