/** * A no-operation function that does nothing. * Useful as a default callback or placeholder function. * * @example * ```tsx * const MyComponent = ({ onClick = noop }: { onClick?: () => void }) => ( * * ); * ``` */ export declare const noop: () => void;