import { Price } from '../../order/Price';
/** Hardware for VoIP line */
export interface VoIPHardware {
    /**  */
    deposit?: Price;
    /**  */
    fees?: Price;
    /**  */
    image?: string;
    /**  */
    label: string;
    /**  */
    max?: number;
    /**  */
    name: string;
    /**  */
    needShipping: boolean;
    /**  */
    url?: string;
}
//# sourceMappingURL=VoIPHardware.d.ts.map