/**
 * Store lifecycle including hooks and validations.
 * @ignore
 */
export declare const storeLifeCycle: ({ key, id, data, options, metadata, refKeys }: {
    key: any;
    id: any;
    data: any;
    options: any;
    metadata: any;
    refKeys: any;
}) => Promise<{
    result: any;
    document: any;
}>;
