import React from 'react'; interface IApplicationRedirections { redirect_from: string; redirect_to: string; type: string; } interface IApplicationMeta { name: string; value: string; } type ISecureURL = IApplication["banner"]; type IDomain = IApplication["domain"]; interface IApplication { website: { enabled: boolean; basepath: string; }; cors: { domains: Array; }; auth: { enabled: boolean; }; _id: string; description?: string; channel_type?: string; cache_ttl: number; internal: boolean; is_active: boolean; mode?: string; name: string; owner?: string; company_id?: number; token?: string; tokens?: Array<{ token: string; created_at: string; }>; redirections?: Array; meta?: Array; created_at: string; modified_at: string; __v: number; slug: string; status: string; banner?: { secure_url: string; }; logo?: ISecureURL; favicon?: ISecureURL; domains?: Array; app_type?: string; mobile_logo?: ISecureURL; domain?: { verified: boolean; is_shortlink: boolean; is_primary: boolean; _id: string; name: string; is_predefined?: boolean; }; id?: string; } type ISalesChannelsList = { salesChannelsList: Array; handleClick: Function; }; declare function SalesChannelMainFrame({ salesChannelsList, handleClick }: ISalesChannelsList): JSX.Element; interface IHelloWord { text: string; } declare const HelloWorld: { (props: IHelloWord): JSX.Element; defaultProps: { text: string; }; }; interface IBreadCrumbProps { handleClick: (link: string) => void; } declare const BreadCrumb: React.FC; declare function setBreadCrumpsItems(label: string, link: string): void; export { BreadCrumb, HelloWorld, IApplication, SalesChannelMainFrame as SalesChannel, setBreadCrumpsItems }; //# sourceMappingURL=index.d.ts.map