import * as React from 'react'; import 'moment/locale/de'; interface IBirthdayProps { value: string; name: string; onChange: (e: React.ChangeEvent) => void; errors: { birthday: {}; }; required?: boolean; } declare function Birthday(props: IBirthdayProps): JSX.Element; export default Birthday;