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