import { Storable } from "./persistence.storable";
/**
 * A type defining information needed to access an item.
 *
 * @author Scott O'Bryan
 * @since 1.0
 */
export declare type ItemDefinition = Storable & {
    key?: string;
};
