import type { Props } from './types';
/**
 * [Go to docs](https://svelte-supertiny.codewithshin.com/)
 * ## Props
 * @prop size = ctx.size || '24'
 * @prop role = ctx.role || 'img'
 * @prop ariaLabel = 'filestash'
 * @prop class: classname
 * @prop title
 * @prop desc
 * @prop ...restProps
 */
declare const Filestash: import("svelte").Component<Props, {}, "">;
type Filestash = ReturnType<typeof Filestash>;
export default Filestash;
