import { OnInit } from '@angular/core';
import { DividerMetadata } from './types';
import * as i0 from "@angular/core";
/**
* val-divider
*
* A horizontal divider for separating content sections.
*
* @example
*
*
* @input props: DividerMetadata - Configuration for the divider (size, color, fill)
*/
export declare class DividerComponent implements OnInit {
/**
* Divider configuration object.
* @type {DividerMetadata}
* @property size - The divider size ('small' | 'medium' | 'large').
* @property color - The divider color.
* @property fill - The divider fill style ('solid' | 'gradient').
*/
props: DividerMetadata;
constructor();
ngOnInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}