import LimitType from "./LimitType";
export declare type Limit = {
    daily_limit: string;
    currency: string;
    type: LimitType;
};
export default Limit;
