import { CSSProperties } from 'react'; import { Net } from '../shared/runtime.js'; export declare type BrandProps = { style?: CSSProperties; network?: Net; direction?: 'horizontal' | 'vertical'; theme?: 'light' | 'dark'; onClick?: () => void; }; declare const Brand: ({ style, network, direction, theme, onClick, }: BrandProps) => JSX.Element; export default Brand;