import { Component } from 'react'; export interface IDialogProviderProps { children: any; tracking?: any; } interface IDialogProviderState { show: boolean; } interface IDialogProviderMethods { hideDialog: () => void; showDialog: () => void; } export interface IDialog extends IDialogProviderMethods, IDialogProviderState { } export interface IDialogAPI { dialog: IDialog; } declare class DialogProvider extends Component { state: IDialogProviderState; hideDialog: () => void; showDialog: () => void; render(): JSX.Element; } export default DialogProvider; export interface IDialogConfig { hideDialog: () => void; show: boolean; showDialog: () => void; } declare const KbcDialog: any; export { KbcDialog }; //# sourceMappingURL=provider.d.ts.map