import { AdminSession } from '@shopify/cli-kit/node/session'; import { ThemeFileSystem, Theme, Checksum } from '@shopify/cli-kit/node/themes/types'; interface DownloadOptions { nodelete: boolean; only?: string[]; ignore?: string[]; } export declare function downloadTheme(theme: Theme, session: AdminSession, remoteChecksums: Checksum[], themeFileSystem: ThemeFileSystem, options: DownloadOptions): Promise; export {};