import { FC } from 'react';

type StoreButtonsTypes = {
    store: "apple" | "google";
};
declare const AppStores: FC<StoreButtonsTypes>;

export { AppStores };
