import type { IStruct } from './struct.interface';
export declare class StructTransformer {
    static toStruct(obj: object): IStruct;
    private static toStructField;
    static toObject(value?: IStruct): object | undefined;
    static isStruct(value: any): boolean;
    private static extractValue;
}
