import { ButtonSize, ButtonType } from './types'; import { ButtonVariant } from '../../types'; declare type Props = { variant: ButtonVariant; body: ButtonType; size: ButtonSize; isDisabled: boolean; isActive: boolean; fullWidth?: boolean; }; export declare const StyledButton: import("styled-components").StyledComponent<"button", any, Props, never>; export declare const StyledAnchor: import("styled-components").StyledComponent<"a", any, Props, never>; export declare const IconSocket: import("styled-components").StyledComponent<"div", any, {}, never>; export {};