import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
/** Renders an HTML `<samp>` element. Accepts optional attributes and child content. */
declare const Samp: import("svelte").Component<Props, {}, "">;
type Samp = ReturnType<typeof Samp>;
export default Samp;
