import type { FC, Ref } from 'react'; import { type ButtonProps } from '../Button'; export type CodeSnippetShowMoreButtonProps = Omit & { ref?: Ref; }; /** * Optional explicit show-more control for snippets with `maxLines`. * Do not render this for ordinary collapsed snippets; `CodeSnippetRoot` * auto-renders the default control. Render it as a direct child only when * consumer props must reach the real button. */ export declare const CodeSnippetShowMoreButton: FC;