import { FC } from "react";
export interface BagProps {
    LineItemsCount: number;
    BagTitle: string;
    onClick?: () => void;
}
export declare const Bag: FC<BagProps>;
export default Bag;
