import React, { type ReactNode } from 'react';
import { type BoxProps } from '../Box/Box';
interface FunOptionBoxProps extends Omit<BoxProps, 'className' | 'cursor' | 'tabIndex' | 'style'> {
    isActive?: boolean;
    paddingX?: BoxProps['paddingX'];
    paddingY?: BoxProps['paddingY'];
    type?: 'default' | 'bordered';
    children: ReactNode;
}
export declare function FunOptionBox({ isActive, onClick, paddingX, paddingY, type, as, borderStyle, borderWidth, borderRadius, display, alignItems, gap, justifyContent, color, children, disabled, ...boxProps }: FunOptionBoxProps): React.JSX.Element;
export {};
