import React from 'react';
export interface PanelItemProps {
    narrow?: boolean;
    title?: string;
    CustomIcon?: React.ElementType;
    description?: string;
    ariaLabel?: string;
    links?: {
        text?: string;
        href?: string;
        type?: string;
    }[];
}
export interface LoginItemProps {
    data?: {
        panel?: {
            description?: string;
            links?: {
                href?: string;
                text?: string;
                type?: string;
            }[];
        };
        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;
