import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { Footer as FooterElement, FooterProperties } from '@watching/clips/elements'; import { ViewProps } from './View.tsx'; export interface FooterProps extends PropsWithChildren, keyof ViewProps>>, Omit { ref?: ForwardedRef; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-footer': FooterProps; } } } export declare const Footer: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=Footer.d.ts.map