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