/**
* Processor for Livewire component syntax
*
* Processes the `` and `...` syntax
* and converts it to `@!livewire(...)` (self-closing) or `@livewire(...)...@endlivewire`
* (block) tag syntax. This allows users to use HTML-like syntax for Livewire components.
*
* @example
* ```edge
* {{-- Self-closing syntax: --}}
*
*
* {{-- Block syntax: --}}
* Body content
* ```
*/
export declare function processLivewireComponents(raw: string): string;