/// import * as uui from '@epam/uui'; type LinkButtonMods = Pick & { /** * Defines component color. * @default 'blue' */ color?: 'blue' | 'green' | 'red' | 'gray60' | 'gray10' | uui.LinkButtonProps['color']; }; /** Represents the properties for the LinkButton component. */ export type LinkButtonProps = uui.LinkButtonCoreProps & LinkButtonMods; export declare const LinkButton: (props: uui.LinkButtonCoreProps & Pick & { /** * Defines component color. * @default 'blue' */ color?: 'blue' | 'green' | 'red' | 'gray60' | 'gray10' | uui.LinkButtonProps['color']; } & import("react").RefAttributes) => import("react").ReactElement>; export {}; //# sourceMappingURL=LinkButton.d.ts.map