/// <reference types="react" />
export declare enum IconSize {
    Large = 114,
    Medium = 72,
    Small = 57
}
interface Icon {
    size: IconSize;
    url: string;
}
interface Props {
    icons?: Icon[];
    startUpImage?: string;
}
export declare function AppleHomeScreen({ icons, startUpImage }: Props): JSX.Element;
export {};
