import React, { FC } from 'react'; import { Props } from './adaptive-card'; interface HostConfig { hostConfig: object; } export declare const HostConfigContext: React.Context; export declare type PropsWithoutHostConfig = Omit; export declare const AdaptiveCardUsingHostConfigContext: (props: PropsWithoutHostConfig) => JSX.Element; export declare const ProvidesHostConfigContext: FC<{ hostConfig: object; }>; export {};