import React, { ReactNode, Ref } from 'react'; import { Props } from '../../types.js'; interface SharedData { slot?: {}; name?: string; props?: {}; } interface DescriptionProviderProps extends SharedData { children: ReactNode; } export declare function useDescriptions(): [ string | undefined, (props: DescriptionProviderProps) => JSX.Element ]; export declare let Description: ( = "p">(props: Props, ref: Ref) => React.ReactElement> | null) & { displayName: string; }; export {};