import type { StylableProps } from '~/types/component';
export interface DividerProps extends StylableProps {
    variant?: 'horizontal' | 'vertical';
}
