/// <reference types="react" />
export interface CodeblockProps {
    style?: React.CSSProperties;
    children: string;
    language?: string;
}
