import * as React from "react";
import type * as Common from "../../../common/types";
interface Props extends Common.Globals {
    href?: string;
    external?: boolean;
    onClick?: Common.Event<React.SyntheticEvent<HTMLDivElement> | React.KeyboardEvent<HTMLDivElement>>;
    onKeyDown?: Common.Event<React.KeyboardEvent<HTMLDivElement>>;
    as?: string;
    tabIndex?: string | number;
    role?: string;
    ariaExpanded?: boolean;
    ariaControls?: string;
    htmlTitle?: string;
    id?: string;
}
export declare const StyledTileWrapper: any;
declare const TileWrapper: ({ href, external, dataTest, onClick, onKeyDown, children, as, tabIndex, role, ariaExpanded, ariaControls, id, htmlTitle, }: React.PropsWithChildren<Props>) => JSX.Element;
export default TileWrapper;
