import { AbstractLinkProps } from "../../link"; import { ComponentProps } from "react"; import { OmitInternalProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; import { TileOrientation } from "./useTile"; declare const DefaultElement = "a"; export interface InnerTileLinkProps extends AbstractLinkProps { /** * The orientation of the tile. */ orientation?: ResponsiveProp; } export declare function InnerTileLink({ active, as, children, disabled, focus, forwardedRef, hover, orientation, ...rest }: InnerTileLinkProps): JSX.Element; export declare namespace InnerTileLink { var defaultElement: string; } /** * [Documentation](https://orbit.sharegate.design/?path=/docs/tile--tile) */ export declare const TileLink: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type TileLinkProps = ComponentProps; export {};