import { Accessor, Setter } from 'solid-js'; type FeedbackContentDialogProps = { isOpen: boolean; onClose: () => void; onSubmit: (text: string) => void; backgroundColor?: string; textColor?: string; inputValue: Accessor; setInputValue: Setter; }; declare const FeedbackContentDialog: (props: FeedbackContentDialogProps) => import("solid-js").JSX.Element; export default FeedbackContentDialog; //# sourceMappingURL=FeedbackContentDialog.d.ts.map