/**
 * Base interface for all SDK type classes.
 * Implementing this interface helps preserve class names during bundling.
 */
export interface SdkType {
    /**
     * Type identifier for SDK type classes.
     */
    readonly _sdkType: string;
}
