import { BUTTON_TYPE, BUTTON_SIZE, THEME } from './types'; interface StyledButtonProps { isDisabled: boolean; isLoading: boolean; styledType: BUTTON_TYPE; isFullWidth: boolean; size: BUTTON_SIZE; theme: THEME; } declare const StyledButton: import("styled-components").StyledComponent<"button", any, { disabled: boolean; } & StyledButtonProps, "disabled">; export { StyledButton };