import React, { ReactNode } from "react"; import { AccordionProps } from "../../Accordion/index.js"; type BackgroundValue = AccordionProps["background"]; interface AccordionBackgroundProviderProps { children: ReactNode; currentBackground: BackgroundValue; } export declare const AccordionBackgroundProvider: ({ children, currentBackground }: AccordionBackgroundProviderProps) => React.JSX.Element; export declare const useAccordionBackground: (fallbackBackground: BackgroundValue) => BackgroundValue; export {};