import React from 'react'; import { ImageSourcePropType } from 'react-native'; interface AppHeaderLogoProps { size?: number; customIcon?: ImageSourcePropType | null; shape?: 'square' | 'circle'; } export declare const AppHeaderLogo: React.FC; export default AppHeaderLogo;