export type DateString = string;
export type DatePartShort = 'h' | 'd' | 'w' | 'm' | 'y';
export declare function isDatePartShort(input: string): input is DatePartShort;
