///
import { Palette } from '../types';
import { BoxProps } from '../Box';
export declare type LocalCodeProps = {
/** Indicates if the code should be placed in a block. */
isBlock?: boolean;
/** Color of the code (inline) block. */
palette?: Palette;
};
export declare type CodeProps = BoxProps & LocalCodeProps;
export declare const Code: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
/** Indicates if the code should be placed in a block. */
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};