import React from 'react'; import type { PropsWithChildren } from 'react'; import type { Poll } from 'stream-chat'; export type PollContextValue = { poll: Poll; }; export declare const PollContext: React.Context; export declare const PollProvider: ({ children, poll, }: PropsWithChildren<{ poll: Poll; }>) => import("react/jsx-runtime").JSX.Element | null; export declare const usePollContext: () => PollContextValue; //# sourceMappingURL=PollContext.d.ts.map