| Current Path : /usr/local/lib/node_modules/@google/gemini-cli/node_modules/ink/build/components/ |
| Current File : //usr/local/lib/node_modules/@google/gemini-cli/node_modules/ink/build/components/Newline.d.ts |
import React from 'react';
export type Props = {
/**
* Number of newlines to insert.
*
* @default 1
*/
readonly count?: number;
};
/**
* Adds one or more newline (\n) characters. Must be used within <Text> components.
*/
export default function Newline({ count }: Props): React.JSX.Element;