import React from 'react'; export declare const PromptsProvider: ({ children, }: { children: React.ReactNode; }) => JSX.Element; interface Value { promptStartVideo: (asker: string) => void; promptUnmute: (asker: string) => void; } export declare const PromptsContext: React.Context; export {};