import React from 'react';
export interface PanelItemProps {
    narrow?: boolean;
    title?: string;
    CustomIcon?: React.ElementType;
    description?: string;
    ariaLabel?: string;
    links?: object[];
}
export interface LoginItemProps {
    data?: {
        panel?: {
            description?: string;
            links?: object[];
        };
        text?: string;
        ariaLabel?: string;
    };
}
export declare const LoginItem: ({ data }: LoginItemProps) => any;
export declare const TranslateItem: () => any;
export interface StateItemProps {
    data?: {
        link?: string;
        text?: string;
        ariaLabel?: string;
    };
}
export declare const StateItem: ({ data }: StateItemProps) => any;
