import { SCStepType } from '@selfcommunity/types';
export interface CategoryProps {
    /**
     * The category step
     */
    step: SCStepType;
    /**
     * Overrides or extends the styles applied to the component.
     * @default null
     */
    className?: string;
    /**
     * Callback triggered on success category content generation
     * @default null
     */
    handleCategoriesCreation?: () => void;
}
export default function Category(inProps: CategoryProps): JSX.Element;
