import { InputWrapperBaseProps } from '../internals/InputWrapper'; export type CodeBlockProps = Pick & { /** * Show a Copy to clipboard button. */ showCopyAction?: boolean; /** * Show a button to hide/show content. Content starts hidden if `showSecretAction` is true. */ showSecretAction?: boolean; /** * Content to be rendered. * It only accepts a string and will respect new lines when passing a template literal (backticks). */ children: string; }; export declare const CodeBlock: import('./SkeletonTemplate').SkeletonTemplateComponent<{ label?: string | undefined; hint?: { icon?: import('./Hint').HintProps["icon"]; text: import('./Hint').HintProps["children"]; } | undefined; showCopyAction?: boolean /** * Show a button to hide/show content. Content starts hidden if `showSecretAction` is true. */ | undefined; showSecretAction?: boolean /** * Content to be rendered. * It only accepts a string and will respect new lines when passing a template literal (backticks). */ | undefined; children: string; delayMs?: number | undefined; isLoading?: boolean | undefined; }>;