import type { FeedbackFormData, FeedbackInternalOptions } from '@sentry/core';
export type Props = Pick<FeedbackInternalOptions, 'emailLabel' | 'isEmailRequired' | 'isNameRequired' | 'messageLabel' | 'nameLabel'>;
/**
 * Validate that a given feedback submission has the required fields
 */
export declare function getMissingFields(feedback: FeedbackFormData, props: Props): string[];
//# sourceMappingURL=validate.d.ts.map