export type DateInput = Date | string | number | null | undefined; export interface DateParts { yyyy: string; MM: string; dd: string; } export declare function dateParts(value?: DateInput): DateParts; export declare function resourceKey(key: string | undefined, prefix: string): string; export declare function workflowOwnerDir(row?: Record): string | null; export declare function parentDir(id: string | null | undefined): string | null;