import { BasicComponentProps } from "../../../types";
import { ReactNode } from 'react';
export interface CnDemoBlockProps extends BasicComponentProps {
    /**
     * 标题
     */
    title: string;
    /**
     * 内容的内边距
     * @default "12px 12px"
     */
    padding?: string | number | number[];
    /**
     * 内容的背景
     */
    background?: string;
    /**
     * 内容
     */
    children?: ReactNode;
}
