import React from 'react';
import { ApphouseComponent } from '../components/component.interfaces';
import { CSSProperties } from 'glamor';
export interface ApphouseCopyrightStyles {
    container?: CSSProperties;
    text?: CSSProperties;
    img?: CSSProperties;
}
export interface ApphouseCopyrightProps extends ApphouseComponent<ApphouseCopyrightStyles> {
    children?: React.ReactNode;
    /**
     * The size of the image
     * @default 20
     */
    imageSize?: number;
    /**
     * The year to display in the copyright notice
     */
    year?: number;
}
export declare const ApphouseCopyright: React.FC<ApphouseCopyrightProps>;
