import { TypeImport, TypeName } from '@rxap/ts-morph';
import { CoerceDtoClassOptions } from '@rxap/ts-morph';
export interface CoerceRowDtoClassOptions extends CoerceDtoClassOptions {
    /**
     * the type of the property used as row id type. defaults to the type 'string'. If null the type will be
     * set to number
     */
    rowIdType?: TypeImport | TypeName;
}
export declare function BuildRowDtoClassName(name: string): string;
export declare function CoerceRowDtoClass(options: CoerceRowDtoClassOptions): import("@rxap/ts-morph").CoerceDtoClassOutput;
