import { FC } from 'react'; export type DatePickerProps = { styles?: DatePickerStyles; color: string; backAccessibilityLabel: string; forwardAccessibilityLabel: string; dateText: string; onChange: (shiftByDays: number) => void; backValue: number; forwardValue: number; iconDisabledCondition: boolean; }; export declare const DatePicker: FC; declare const defaultStyles: (theme: import("../../BrandConfigProvider").Theme) => readonly ["TrackTile.DatePicker", import("../../BrandConfigProvider/styles/createStyles").NamedStyles<{ buttonContainer: { flexDirection: "row"; justifyContent: "center"; marginVertical: number; alignItems: "center"; borderRadius: number; height: number; elevation: number; shadowOpacity: number; shadowColor: string; shadowOffset: { width: number; height: number; }; shadowRadius: number; }; textContainer: { width: string; marginVertical: number; height: string; justifyContent: "center"; backgroundColor: string; }; text: { textAlign: "center"; }; iconButton: { borderRadius: number; margin: number; }; }>]; declare module './../../BrandConfigProvider/styles/types' { interface ComponentStyles extends ComponentNamedStyles { } } export type DatePickerStyles = NamedStylesProp; export {};