import { SelectedChannel } from '@jetshop/core/components/ChannelContext/ChannelContext'; import { Channel } from '@jetshop/core/types'; import React from 'react'; import { SelectChannel } from './ChannelSelector'; export interface ChannelsProps { /** An array of channels */ channels: Channel[]; /** The selected channel obj */ selectedChannel: SelectedChannel; /** Called with the country obj when a country is selected */ onSelect: SelectChannel; } declare const Channels: React.SFC; export default Channels; export declare const ChannelList: import("linaria/lib/StyledMeta").StyledMeta & React.FunctionComponent & React.HTMLAttributes & { as?: React.ElementType; }>;