///
import { CSSObject } from '@chakra-ui/react';
export interface props {
as?: 'button' | 'a';
ariaLabel?: string;
children?: React.ReactNode;
fontSize?: string | '0.875rem';
href?: string;
id?: string;
isDisable?: boolean;
m?: string;
onClick?: (e: React.MouseEvent) => void;
role?: 'button' | 'link';
tabIndex?: number;
target?: '_blank' | '_self';
textDecorationLine?: boolean;
sx?: CSSObject;
}
export declare function BtnLink({ as, ariaLabel, children, fontSize, href, id, isDisable, m, onClick, role, tabIndex, target, textDecorationLine, sx, }: props): JSX.Element;
export declare namespace BtnLink {
var displayName: string;
}
export declare const stylesBtnLink: {
backgroundColor: string;
borderStyle: string;
color: string;
cursor: string;
fontFamily: string;
fontSize: string;
fontStyle: string;
fontWeight: string;
lineHeight: string;
padding: string;
textDecorationLine: string;
width: string;
_hover: {
color: string;
cursor: string;
};
};
//# sourceMappingURL=BtnLink.d.ts.map