import React from 'react';
import { IFooter } from './types/footer';
declare const FooterBoundary: <V extends string | unknown>(props: IFooter<V>, ref: React.ForwardedRef<HTMLElement> | undefined | null) => JSX.Element;
/**
 * @deprecated This component has been deprecated and will be removed in the next MAJOR release. Will include all this on the CheckBox component
 */
declare const Footer: <V extends string | unknown>(props: React.PropsWithChildren<IFooter<V>> & {
    ref?: React.ForwardedRef<HTMLElement> | undefined | null;
}) => ReturnType<typeof FooterBoundary>;
export { Footer };
