import React from 'react'; interface SubTotalProps { count: number; total: string; } export declare function SubTotal({ count, total }: SubTotalProps): React.JSX.Element; export {};