import React from 'react'; interface ConsentDialogProps { open: boolean; title: string; content?: string; cancelBtn: string; acceptBtn: string; size?: 'sm' | 'lg' | 'xl'; fullScreenFrom?: 'sm-down' | 'md-down' | 'lg-down' | 'xl-down' | 'xxl-down'; onConfirmed: () => void; onCancelled: () => void; dialogPaddingXClass?: string; dialogPaddingYClass?: string; } declare const ConsentDialog: React.FC; export default ConsentDialog;