///
import PropTypes from 'prop-types';
interface SlotProps {
name: string;
active?: string;
onlyActive?: boolean;
props?: {
onClick?: (id: string, ...attrs: any[]) => void;
active?: boolean;
name?: string;
[propId: string]: any;
};
className?: string;
}
declare function Slot({ name, active, onlyActive, className, props }: SlotProps): JSX.Element | null;
declare namespace Slot {
var propTypes: {
name: PropTypes.Validator;
active: PropTypes.Requireable;
onlyActive: PropTypes.Requireable;
props: PropTypes.Requireable