interface Props {
    size?: string;
    color?: string;
    class?: string;
}
/**
 * [Go to docs](https://flowbite-svelte-blocks.codewithshin.com/)
 * ## Props
 * @props: size: any = '24';
 * @props:color: any = '#1877F2';
 * @props:class: string;
 */
declare const Instagram: import("svelte").Component<Props, {}, "">;
type Instagram = ReturnType<typeof Instagram>;
export default Instagram;
