export interface ParallelogramButtonProps { text?: string; textColor?: string; hoverTextColor?: string; fontSize?: number; fontWeight?: number; width?: number; height?: number; backgroundColor?: string; hoverBackgroundColor?: string; textTransform?: string; borderColor?: string; borderThickness?: string; loading?: boolean; loaderColor?: string; openLink?: string; openLinkInNewTab?: boolean; clickFunction?: () => void; prefixIcon?: string; suffixIcon?: string; gradientDirection?: string; gradientColors?: string[]; hoverGradientDirection?: string; hoverGradientColors?: string[]; isDisabled?: boolean; skewType?: string; skew?: number; } declare const WOIParallelogramButton: (props: ParallelogramButtonProps) => import("react/jsx-runtime").JSX.Element; export default WOIParallelogramButton;