import React from 'react';
/**
 * Interface for the ApphouseLogo component
 */
interface ApphouseLogoProps {
    color?: string;
    /**
     * The size multiplier for the logo
     * @default 1
     */
    size?: number;
}
/**
 * The ApphouseLogo component
 */
export declare const ApphouseLogo: React.FC<ApphouseLogoProps>;
export {};
