/**
 * Methods for OpenFin Store object handling.
 */
export declare class OpenFinStore {
    /**
     * Show the store window.
     * @param timeout The amount of time to wait for the store window to open.
     * @returns True if the window was found and opened.
     */
    static show(timeout: number): Promise<boolean>;
    /**
     * Hide the store window.
     */
    static hide(): Promise<void>;
}
