import React from 'react'; type PopoverContextProps = { children: React.ReactNode; }; export declare function usePopoverRequestClose(popoverContextId: string): () => void; export declare function usePopoverContext(id?: string, hide?: boolean, onRequestClose?: () => void): void; export default function SilkePopoverProvider({ children }: PopoverContextProps): import("react/jsx-runtime").JSX.Element; export {};