import React, { PropsWithChildren } from 'react';
import { BaseProps } from '../component-helpers';
type CardSkewEffectProps = {
    perspective?: number;
    disableSkew?: boolean;
} & BaseProps<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement>;
export declare const CardSkewEffect: ({ color, children, className, perspective, disableSkew, ...rest }: PropsWithChildren<CardSkewEffectProps>) => import("react/jsx-runtime").JSX.Element;
export {};
