import DateField from './Date'; export declare class Timestamp extends DateField { component: { form: string; index: string; detail: string; }; protected config: { pickerFormat: string; dateFormat: string; timePicker: boolean; timePicker24Hr: boolean; options: {}; }; /** * When a new date string is initialized, it defaults the * date to today's date. */ constructor(name: string, databaseField?: string); defaultToNow(): this; } export declare const timestamp: (name: string, databaseField?: string | undefined) => Timestamp; export default Timestamp;