export declare const LINK_BUTTON_SIZE: readonly ["medium", "small"];
export type LinkButtonSize = (typeof LINK_BUTTON_SIZE)[number];
export declare const LINK_BUTTON_VARIANT: readonly ["filled", "highlight", "outline", "ghost"];
export type LinkButtonVariant = (typeof LINK_BUTTON_VARIANT)[number];
export type LinkButtonIconPosition = 'left' | 'right';
export type LinkButtonRel = 'alternate' | 'author' | 'bookmark' | 'external' | 'help' | 'license' | 'next' | 'nofollow' | 'noreferrer' | 'noopener' | 'prev' | 'search' | 'tag';
export type LinkButtonReferrerPolicy = 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url';
export type LinkButtonAriaAttribute = 'aria-label' | 'aria-current' | 'aria-labelledby';
