import { TransformOptions } from 'class-transformer';
export interface ToBigIntTransformOptions extends TransformOptions {
    optional?: boolean;
}
/**
 * @returns BigInt Or NaN
 */
export declare function ToBigInt(options?: ToBigIntTransformOptions): PropertyDecorator;
