import type { FeedbackInternalOptions } from '@sentry/core'; import type { VNode } from 'preact'; import type { Props as HeaderProps } from './DialogHeader'; import type { Props as FormProps } from './Form'; interface Props extends HeaderProps, FormProps { onFormSubmitted: () => void; open: boolean; options: FeedbackInternalOptions; } export declare function Dialog({ open, onFormSubmitted, ...props }: Props): VNode; export {}; //# sourceMappingURL=Dialog.d.ts.map