import type { LinkComponentType } from './types';
/**
 * Context value for the link provider.
 */
export interface LinkContextValue {
    component: LinkComponentType;
}
/**
 * Context for providing a custom link component to all Astryx components.
 * Defaults to null (components fall back to native `<a>`).
 */
export declare const LinkContext: import("react").Context<LinkContextValue | null>;
//# sourceMappingURL=LinkContext.d.ts.map