import { ReactNode } from 'react'; /** * @public * Props for the {@link CookieAuthRefreshProvider} component. */ export type CookieAuthRefreshProviderProps = { pluginId: string; children: ReactNode; }; /** * @public * A provider that will refresh the cookie when it is about to expire. */ export declare function CookieAuthRefreshProvider(props: CookieAuthRefreshProviderProps): JSX.Element;