import type { AnchorHTMLAttributes } from 'react';
type CssLength = number | string;
export interface RCCSystemLoginButtonProps extends Omit, 'children'> {
fontSize?: CssLength;
fullWidth?: boolean;
logoSize?: CssLength;
padding?: CssLength;
size?: 'default' | 'compact';
variant?: 'default' | 'light' | 'dark';
}
export declare const RCCSystemLoginButton: import("react").ForwardRefExoticComponent>;
export {};