import { FC } from 'react';

type CopyRightsTypes = {
    /** A text used as the version of the app, for example: v1.0.0 */
    version?: string;
    /** Credit to the creator of the app, for example: Sikka Software */
    credits?: string;
    /** The URL of the logo in the copyrights */
    logoURL?: string;
    /** Enable/Disable the existance of the logo */
    withLogo?: boolean;
    /** Fires when the logo is clicked, usually goes to the website of the creator of the app */
    onLogoClicked?: any;
};
declare const Copyrights: FC<CopyRightsTypes>;

export { Copyrights };
