import { FundCreateData } from './FundCreateData';
export interface IOlympusFundFactory {
    deployFundProduct(fund: FundCreateData, template: {
        abi: any;
        bytecode: any;
    }, gasPrice: number): Promise<{
        address: string;
    } | null>;
    estimatedDeployGasLimit(fund: FundCreateData, template: {
        abi: any;
        bytecode: any;
    }): Promise<number>;
}
