import { Theme } from '@shopify/cli-kit/node/themes/types'; import { AdminSession } from '@shopify/cli-kit/node/session'; interface PullOptions { path: string; nodelete: boolean; force: boolean; only?: string[]; ignore?: string[]; } export declare function pull(theme: Theme, session: AdminSession, options: PullOptions): Promise; export declare function isEmptyDir(path: string): Promise; export {};