/// <reference types="react" />
export interface ISavePropsItem extends Partial<any> {
    Author?: any;
    Editor?: any;
    FirstPublishedDate?: any;
    FirstPublishedDateD?: string;
    createdLoc?: string;
    createdD?: string;
    "Author/Title"?: string;
    modifiedLoc?: string;
    modifiedD?: string;
    "Editor/Title"?: string;
}
export interface ISavePropsRow {
    item: ISavePropsItem;
    value: 'Created' | 'Modified' | 'Published';
}
export declare function getDateStampRow(item: ISavePropsItem, value: 'Created' | 'Modified' | 'Published'): JSX.Element;
//# sourceMappingURL=getDateStampRow.d.ts.map