import { Development } from '@signageos/sdk/dist/Development/Development'; export interface IDevelopmentFactoryOptions { url: string; accessToken?: string; organizationUid?: string; } /** * Creates a Development instance using deep SDK imports only. * Does NOT touch the SDK barrel or its implicit parameters. * All configuration is passed explicitly. */ export declare function createDevelopmentWithOptions(opts: IDevelopmentFactoryOptions): Development;