import React from 'react'; interface ISiNoDialog { on_si_texto?: string; on_no_texto?: string; texto_verificacion_comprobacion?: string; onSi: () => any; onNo: () => any; title: string; is_open: boolean; fullScreen?: boolean; children: React.ReactNode; } export declare const SiNoDialog: (props: ISiNoDialog) => JSX.Element; export {};