/// export interface DatePickerProps { label: string; value?: Date; handleChange: (newValue: Date | null) => void; } declare function SparkDatePicker(props: DatePickerProps): JSX.Element; export default SparkDatePicker;