import { Model } from 'sequelize-typescript';
import { StockProfile } from './stock-profile.entity';
export declare class StockCustomizeOption extends Model {
    CustomizeOptionId: string;
    ProfileId: string;
    Option: string;
    Profile: StockProfile;
}
