import { PktElement } from '../../base-elements/element';
export interface IPktBackLink {
    href?: string;
    text?: string;
    ariaLabel?: string;
}
export declare class PktBackLink extends PktElement<IPktBackLink> implements IPktBackLink {
    href: string;
    text: string;
    ariaLabel: string;
    attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void;
    render(): import('lit-html').TemplateResult<1>;
}
export default PktBackLink;
